CurryInfo: base-3.3.0 / Control.Monad.foldM_

definition:
foldM_ :: (Monad m) => (b -> a -> m b) -> b -> [a] -> m ()
foldM_ f a xs  = foldM f a xs >> return ()
demand:
argument 1
deterministic:
deterministic operation
documentation:
--- Like 'foldM', but discards the result.
failfree:
(_, _, _, _)
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,_,_,_) |-> _}
name:
foldM_
precedence:
no precedence defined
result-values:
_
signature:
Prelude.Monad c => (a -> b -> c a) -> a -> [b] -> c ()
solution-complete:
operation might suspend on free variables
terminating:
yes
totally-defined:
reducible on all ground data terms