Hoogle Search

Within LTS Haskell 24.25 (ghc-9.10.3)

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

  1. mapM_ :: (Foldable t, Monad m) => (a -> m b) -> t a -> m ()

    distribution-opensuse OpenSuse.Prelude

    Map each element of a structure to a monadic action, evaluate these actions from left to right, and ignore the results. For a version that doesn't ignore the results see mapM. mapM_ is just like traverse_, but specialised to monadic actions.

  2. mapMaybeM :: Monad m => (a -> m (Maybe b)) -> [a] -> m [b]

    distribution-opensuse OpenSuse.Prelude

    A version of mapMaybe that works with a monadic predicate.

  3. mapMSF :: forall (m :: Type -> Type) a b . Monad m => MSF m a b -> MSF m [a] [b]

    dunai Control.Monad.Trans.MSF.List

    Apply an MSF to every input.

  4. mapMaybeT :: (m (Maybe a) -> n (Maybe b)) -> MaybeT m a -> MaybeT n b

    dunai Control.Monad.Trans.MSF.Maybe

    Transform the computation inside a MaybeT.

  5. mapMaybeS :: forall (m :: Type -> Type) a b . Monad m => MSF m a b -> MSF m (Maybe a) (Maybe b)

    dunai Data.MonadicStreamFunction.Util

    Apply an MSF to every input. Freezes temporarily if the input is Nothing, and continues as soon as a Just is received.

  6. mapM_ :: (HVector v, ArityC c (Elems v), Applicative f) => Proxy c -> (forall a . c a => a -> f ()) -> v -> f ()

    fixed-vector-hetero Data.Vector.HFixed

    Apply monadic action to every element in the vector

  7. mapMetadata :: AsMetadata a => (SExpr -> a) -> Identifier -> Identifier

    grisette Grisette.Core

    Modify the metadata of an identifier.

  8. mapMetadata :: AsMetadata a => (SExpr -> a) -> Identifier -> Identifier

    grisette Grisette.Internal.Core.Data.Symbol

    Modify the metadata of an identifier.

  9. mapMaybe :: Ord k => (a -> Maybe b) -> Map k a -> Map k b

    hashmap Data.HashMap

    Map values and collect the Just results.

  10. mapMaybeWithKey :: Ord k => (k -> a -> Maybe b) -> Map k a -> Map k b

    hashmap Data.HashMap

    Map keys/values and collect the Just results.

Page 55 of many | Previous | Next