Hoogle Search
Within LTS Haskell 24.33 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
mapUnionFV :: (a -> FV) -> [a] -> FVghc-lib-parser GHC.Utils.FV Map a free variable computation over a list and union the results.
mapAndUnzip :: (a -> (b, c)) -> [a] -> ([b], [c])ghc-lib-parser GHC.Utils.Misc No documentation available.
mapAndUnzip3 :: (a -> (b, c, d)) -> [a] -> ([b], [c], [d])ghc-lib-parser GHC.Utils.Misc No documentation available.
mapAndUnzip4 :: (a -> (b, c, d, e)) -> [a] -> ([b], [c], [d], [e])ghc-lib-parser GHC.Utils.Misc No documentation available.
mapFst :: Functor f => (a -> c) -> f (a, b) -> f (c, b)ghc-lib-parser GHC.Utils.Misc No documentation available.
mapMaybe' :: Foldable f => (a -> Maybe b) -> f a -> [b]ghc-lib-parser GHC.Utils.Misc No documentation available.
mapSnd :: Functor f => (b -> c) -> f (a, b) -> f (a, c)ghc-lib-parser GHC.Utils.Misc No documentation available.
mapAccumLM :: (Monad m, Traversable t) => (acc -> x -> m (acc, y)) -> acc -> t x -> m (acc, t y)ghc-lib-parser GHC.Utils.Monad Monadic version of mapAccumL
mapAndUnzip3M :: Monad m => (a -> m (b, c, d)) -> [a] -> m ([b], [c], [d])ghc-lib-parser GHC.Utils.Monad mapAndUnzipM for triples
mapAndUnzip4M :: Monad m => (a -> m (b, c, d, e)) -> [a] -> m ([b], [c], [d], [e])ghc-lib-parser GHC.Utils.Monad No documentation available.