CurryInfo: base-3.4.0 / Prelude.zip

definition: Info
 
zip :: [a] -> [b] -> [(a, b)]
zip []     _      = []
zip (_:_)  []     = []
zip (x:xs) (y:ys) = (x, y) : zip xs ys
demand: Info
 argument 1
deterministic: Info
 deterministic operation
documentation: Info
 
Joins two lists into one list of pairs. If one input list is shorter than
the other, the additional elements of the longer list are discarded.
failfree: Info
 (_, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {({[]},_) |-> {[]} || ({:},{[]}) |-> {[]} || ({:},{:}) |-> {:}}
name: Info
 zip
precedence: Info
 no precedence defined
result-values: Info
 {:,[]}
signature: Info
 [a] -> [b] -> [(a, b)]
solution-complete: Info
 operationally complete operation
terminating: Info
 yes
totally-defined: Info
 reducible on all ground data terms