CurryInfo: base-3.4.0 / Control.Monad.zipWithM

definition: Info
 
zipWithM :: (Applicative m) => (a -> b -> m c) -> [a] -> [b] -> m [c]
zipWithM f xs ys  =  sequenceA (zipWith f xs ys)
demand: Info
 arguments 1 3
deterministic: Info
 deterministic operation
documentation: Info
 
The 'zipWithM' function generalizes 'zipWith' to
arbitrary applicative functors.
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 [d]
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 yes
totally-defined: Info
 reducible on all ground data terms