Hoogle Search
Within LTS Haskell 24.32 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
mapAndUnzip3M :: Monad m => (a -> m (b, c, d)) -> [a] -> m ([b], [c], [d])ghc GHC.Utils.Monad mapAndUnzipM for triples
mapAndUnzip4M :: Monad m => (a -> m (b, c, d, e)) -> [a] -> m ([b], [c], [d], [e])ghc GHC.Utils.Monad No documentation available.
mapAndUnzip5M :: Monad m => (a -> m (b, c, d, e, f)) -> [a] -> m ([b], [c], [d], [e], [f])ghc GHC.Utils.Monad No documentation available.
mapAndUnzipM :: Applicative m => (a -> m (b, c)) -> [a] -> m ([b], [c])ghc GHC.Utils.Monad No documentation available.
mapMaybeM :: Applicative m => (a -> m (Maybe b)) -> [a] -> m [b]ghc GHC.Utils.Monad Applicative version of mapMaybe
mapSndM :: (Applicative m, Traversable f) => (b -> m c) -> f (a, b) -> m (f (a, c))ghc GHC.Utils.Monad Monadic version of mapSnd
mapXRec :: (MapXRec p, Anno a ~ Anno b) => (a -> b) -> XRec p a -> XRec p bghc Language.Haskell.Syntax.Extension No documentation available.
-
ghc Language.Haskell.Syntax.Type No documentation available.
mapToJSON :: [(Text, PersistValue)] -> Textpersistent Database.Persist Convert map (list of tuples) into textual representation of JSON object. This is a type-constrained synonym for toJsonText.
mapAccumM :: (Monad m, Traversable t) => (a -> b -> m (a, c)) -> a -> t b -> m (a, t c)Cabal Distribution.Utils.MapAccum Monadic variant of mapAccumL.