Hoogle Search
Within LTS Haskell 24.4 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
mapThese :: ((a, b) -> (a, b)) -> These a b -> These a bthese Data.These.Combinators No documentation available.
mapThis :: (a -> a) -> These a b -> These a bthese Data.These.Combinators No documentation available.
mapC :: Constructor -> Converterhaskell-gi Data.GI.CodeGen.Conversions No documentation available.
mapM_ :: Monad m => (a -> m ()) -> FoldM m a ()foldl Control.Foldl Converts an effectful function to a fold. Specialized version of sink.
mapped__ :: (Mapping p, Functor f) => Optic__ p i i (f a) (f b) a boptics-core Optics.Internal.Setter Internal implementation of mapped.
-
optics-core Optics.Mapping The mapping can be used to lift optic through a Functor.
mapping :: Iso s t a b -> Iso (f s) (g t) (f a) (g b) mapping :: Lens s a -> Getter (f s) (f a) mapping :: Getter s a -> Getter (f s) (f a) mapping :: Prism t b -> Review (g t) (g b) mapping :: Review t b -> Review (g t) (g b)
mapped :: Functor f => Setter (f a) (f b) a boptics-core Optics.Setter Create a Setter for a Functor.
over mapped ≡ fmap
-
optics-core Optics.Traversal This generalizes mapAccumL to an arbitrary Traversal.
mapAccumL ≡ mapAccumLOf traverse
mapAccumLOf accumulates State from left to right. -
optics-core Optics.Traversal This generalizes mapAccumR to an arbitrary Traversal.
mapAccumR ≡ mapAccumROf traversed
mapAccumROf accumulates State from right to left. -
adjunctions Control.Monad.Representable.State Map both the return value and final state of a computation using the given function.