Hoogle Search
Within LTS Haskell 24.35 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
diagrams-lib Diagrams.Prelude Lift an Iso contravariantly into the left argument of a Profunctor.
lmapping :: Profunctor p => Iso s t a b -> Iso (p a x) (p b y) (p s x) (p t y) lmapping :: Profunctor p => Iso' s a -> Iso' (p a x) (p s x)
rmap :: Profunctor p => (b -> c) -> p a b -> p a cdiagrams-lib Diagrams.Prelude Map the second argument covariantly.
rmap ≡ dimap id
-
diagrams-lib Diagrams.Prelude Lift an Iso covariantly into the right argument of a Profunctor.
rmapping :: Profunctor p => Iso s t a b -> Iso (p x s) (p y t) (p x a) (p y b) rmapping :: Profunctor p => Iso' s a -> Iso' (p x s) (p x a)
m33AffineMap :: Num n => M33 n -> V2 n -> AffineMap V3 V2 ndiagrams-lib Diagrams.ThreeD.Projection Create an AffineMap from a 3x3 transformation matrix and a translation vector.
m44AffineMap :: Num n => M44 n -> AffineMap V3 V2 ndiagrams-lib Diagrams.ThreeD.Projection Create an AffineMap from a 4x4 homogeneous matrix, ignoring any perspective transforms.
type
ExtensionMap = Map MimeType [Extension]mime-types Network.Mime Maps mime types to extensions. The list of extensions is in alphabetical order.
type
MimeMap = Map Extension MimeTypemime-types Network.Mime Maps extensions to mime types.
defaultExtensionMap :: ExtensionMapmime-types Network.Mime -
mime-types Network.Mime A default mapping from filename extension to mime type. Generated from the Apache and nginx mime.types files.
concatMap :: TextualMonoid t => (Char -> t) -> t -> tmonoid-subclasses Data.Monoid.Textual Equivalent to concatMap from Data.List with a Char -> String function. Preserves all non-character data.