CurryInfo: base-3.4.0 / Prelude.zipWith

definition: Info
 
zipWith :: (a -> b -> c) -> [a] -> [b] -> [c]
zipWith _ []     _      = []
zipWith _ (_:_)  []     = []
zipWith f (x:xs) (y:ys) = f x y : zipWith f xs ys
demand: Info
 argument 2
deterministic: Info
 deterministic operation
documentation: Info
 
Joins two lists into one list by applying a combination function to
corresponding pairs of elements. Thus `zip = zipWith (,)`
failfree: Info
 (_, _, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,{[]},_) |-> {[]} || (_,{:},{[]}) |-> {[]} || (_,{:},{:}) |-> {:}}
name: Info
 zipWith
precedence: Info
 no precedence defined
result-values: Info
 {:,[]}
signature: Info
 (a -> b -> c) -> [a] -> [b] -> [c]
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 yes
totally-defined: Info
 reducible on all ground data terms