CurryInfo: base-3.3.0 / Prelude.mapM_

definition:
mapM_ :: Monad m => (a -> m _) -> [a] -> m ()
mapM_ f = sequence_ . map f
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
--- Maps a monadic action function on a list of elements.
--- The results of all monadic actions are ignored.
failfree:
(_, _)
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,_) |-> {.._#lambda508}}
name:
mapM_
precedence:
no precedence defined
result-values:
{.._#lambda508}
signature:
Monad b => (a -> b c) -> [a] -> b ()
solution-complete:
operation might suspend on free variables
terminating:
yes
totally-defined:
reducible on all ground data terms