CurryInfo: base-3.4.0 / Control.Monad.zipWithM_

definition: Info
 
zipWithM_ :: (Applicative m) => (a -> b -> m c) -> [a] -> [b] -> m ()
zipWithM_ f xs ys =  sequenceA_ (zipWith f xs ys)
demand: Info
 no demanded arguments
deterministic: Info
 deterministic operation
documentation: Info
 
'zipWithM_' is the extension of 'zipWithM' which ignores the final result.
failfree: Info
 (_, _, _, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,_,_,_) |-> _}
name: Info
 zipWithM_
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 Prelude.Applicative c => (a -> b -> c d) -> [a] -> [b] -> c ()
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 yes
totally-defined: Info
 reducible on all ground data terms