Hoogle Search

Within LTS Haskell 24.4 (ghc-9.10.2)

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

  1. mapM_ :: Monad m => (a -> m b) -> Stream m a -> m ()

    vector-stream Data.Stream.Monadic

    Execute a monadic action for each element of the Stream

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

    calligraphy Calligraphy.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.

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

    clash-prelude Clash.HaskellPrelude

    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.

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

    control-monad-free Control.Monad.Free

    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.

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

    dimensional Numeric.Units.Dimensional.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.

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

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

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

  9. mapM_ :: (Functor m, Monad m) => (a -> m b) -> Stream m a -> Stream m ()

    leveldb-haskell Data.Stream.Monadic

    No documentation available.

  10. mapM_ :: Monad m => (a -> m b) -> SerialT m a -> m ()

    streamly Streamly.Internal.Data.Stream.IsStream

    mapM_ = Stream.drain . Stream.mapM
    
    Apply a monadic action to each element of the stream and discard the output of the action. This is not really a pure transformation operation but a transformation followed by fold.

Page 9 of many | Previous | Next