• About
  • Snapshots
  • LTS
  • Nightly
  • FAQ
  • Blog

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.

  1. mapAndUnzip :: (a -> (b, c)) -> [a] -> ([b], [c])

    ghc GHC.Utils.Misc

    No documentation available.

  2. mapAndUnzip3 :: (a -> (b, c, d)) -> [a] -> ([b], [c], [d])

    ghc GHC.Utils.Misc

    No documentation available.

  3. mapAndUnzip4 :: (a -> (b, c, d, e)) -> [a] -> ([b], [c], [d], [e])

    ghc GHC.Utils.Misc

    No documentation available.

  4. mapFst :: Functor f => (a -> c) -> f (a, b) -> f (c, b)

    ghc GHC.Utils.Misc

    No documentation available.

  5. mapMaybe' :: Foldable f => (a -> Maybe b) -> f a -> [b]

    ghc GHC.Utils.Misc

    No documentation available.

  6. mapSnd :: Functor f => (b -> c) -> f (a, b) -> f (a, c)

    ghc GHC.Utils.Misc

    No documentation available.

  7. mapAccumLM :: (Monad m, Traversable t) => (acc -> x -> m (acc, y)) -> acc -> t x -> m (acc, t y)

    ghc GHC.Utils.Monad

    Monadic version of mapAccumL

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

    ghc GHC.Utils.Monad

    mapAndUnzipM for triples

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

    ghc GHC.Utils.Monad

    No documentation available.

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

    ghc GHC.Utils.Monad

    No documentation available.

Page 108 of many | Previous | Next

Stackage is a service provided by the Haskell Foundation │ Originally developed by FP Complete