Hoogle Search
Within LTS Haskell 24.45 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
adjunctions Control.Monad.Representable.State No documentation available.
mapDefault :: Ord key => elem -> key -> T (Map key elem) elemdata-accessor Data.Accessor.Container Treats a finite map like an infinite map, where all undefined elements are replaced by a default value.
mapMaybe :: Ord key => key -> T (Map key elem) (Maybe elem)data-accessor Data.Accessor.Container Treats a finite map like an infinite map, where all undefined elements are Nothing and defined elements are Just.
mappend :: Monoid a => a -> a -> ageneric-deriving Generics.Deriving.Monoid An associative operation NOTE: This method is redundant and has the default implementation mappend = (<>) since base-4.11.0.0. Should it be implemented manually, since mappend is a synonym for (<>), it is expected that the two functions are defined the same way. In a future GHC release mappend will be removed from Monoid.
mappend' :: forall (x :: k) . Monoid' f => f x -> f x -> f xgeneric-deriving Generics.Deriving.Monoid No documentation available.
mappenddefault :: (Generic a, Monoid' (Rep a)) => a -> a -> ageneric-deriving Generics.Deriving.Monoid No documentation available.
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.