Hoogle Search

Within LTS Haskell 24.38 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. mapAndUnzip3M :: Monad m => (a -> m (b, c, d)) -> [a] -> m ([b], [c], [d])

    ghc-lib-parser GHC.Utils.Monad

    mapAndUnzipM for triples

  2. mapAndUnzip4M :: Monad m => (a -> m (b, c, d, e)) -> [a] -> m ([b], [c], [d], [e])

    ghc-lib-parser GHC.Utils.Monad

    No documentation available.

  3. mapAndUnzip5M :: Monad m => (a -> m (b, c, d, e, f)) -> [a] -> m ([b], [c], [d], [e], [f])

    ghc-lib-parser GHC.Utils.Monad

    No documentation available.

  4. mapAndUnzipM :: Applicative m => (a -> m (b, c)) -> [a] -> m ([b], [c])

    ghc-lib-parser GHC.Utils.Monad

    The mapAndUnzipM function maps its first argument over a list, returning the result as a pair of lists. This function is mainly used with complicated data structures or a state monad.

  5. mapMaybeM :: Applicative m => (a -> m (Maybe b)) -> [a] -> m [b]

    ghc-lib-parser GHC.Utils.Monad

    Applicative version of mapMaybe

  6. mapSndM :: (Applicative m, Traversable f) => (b -> m c) -> f (a, b) -> m (f (a, c))

    ghc-lib-parser GHC.Utils.Monad

    Monadic version of mapSnd

  7. mapXRec :: (MapXRec p, Anno a ~ Anno b) => (a -> b) -> XRec p a -> XRec p b

    ghc-lib-parser Language.Haskell.Syntax.Extension

    No documentation available.

  8. mapHsOuterImplicit :: (XHsOuterImplicit pass -> XHsOuterImplicit pass) -> HsOuterTyVarBndrs flag pass -> HsOuterTyVarBndrs flag pass

    ghc-lib-parser Language.Haskell.Syntax.Type

    No documentation available.

  9. mapEither :: (Ord b, Ord c) => (a -> Either b c) -> MaxQueue a -> (MaxQueue b, MaxQueue c)

    pqueue Data.PQueue.Max

    Maps a function over the elements of the queue, and separates the Left and Right values.

  10. mapMaybe :: Ord b => (a -> Maybe b) -> MaxQueue a -> MaxQueue b

    pqueue Data.PQueue.Max

    Maps a function over the elements of the queue, and collects the Just values.

Page 188 of many | Previous | Next