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