CurryInfo: base-3.4.0 / Prelude.zip3

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