Instant is
off
|
Search plugin
|
Manual
|
haskell.org
mapM_
Packages
base
mapM_
:: Monad m => (a -> m b) -> [a] -> m ()
base
Prelude
,
base
Control.Monad
mapM_
f is equivalent to
sequence_
.
map
f.
mapM_
:: (Foldable t, Monad m) => (a -> m b) -> t a -> m ()
base
Data.Foldable
Map each element of a structure to a monadic action, evaluate these actions from left to right, and ignore the results.
©
Neil Mitchell
2004-2012, version 4.2.11