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. mapInstantiations :: IsUnitId v => (u -> v) -> GenInstantiations u -> GenInstantiations v

    ghc-lib-parser GHC.Unit.Types

    Map over the unit identifier of unit instantiations.

  2. mapException :: (Exception e1, Exception e2) => (e1 -> e2) -> a -> a

    ghc-lib-parser GHC.Utils.Exception

    This function maps one exception into another as proposed in the paper "A semantics for imprecise exceptions".

  3. mapUnionFV :: (a -> FV) -> [a] -> FV

    ghc-lib-parser GHC.Utils.FV

    Map a free variable computation over a list and union the results.

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

    ghc-lib-parser GHC.Utils.Misc

    No documentation available.

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

    ghc-lib-parser GHC.Utils.Misc

    No documentation available.

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

    ghc-lib-parser GHC.Utils.Misc

    No documentation available.

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

    ghc-lib-parser GHC.Utils.Misc

    No documentation available.

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

    ghc-lib-parser GHC.Utils.Misc

    No documentation available.

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

    ghc-lib-parser GHC.Utils.Misc

    No documentation available.

  10. 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

Page 187 of many | Previous | Next