CurryInfo: nonstrictunif-optimize-3.0.0 / NonStrictOpt.unzip4

definition: Info
 
unzip4              :: [(a,b,c,d)] -> ([a],[b],[c],[d])
unzip4 []           = ([],[],[],[])
unzip4 ((x,y,z,v):ts) = (x:xs,y:ys,z:zs,v:vs) where (xs,ys,zs,vs) = unzip4 ts
demand: Info
 argument 1
deterministic: Info
 deterministic operation
failfree: Info
 _
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {({[]}) |-> {(,,,)} || ({:}) |-> {(,,,)}}
name: Info
 unzip4
precedence: Info
 no precedence defined
result-values: Info
 {(,,,)}
signature: Info
 [(a, b, c, d)] -> ([a], [b], [c], [d])
solution-complete: Info
 operationally complete operation
terminating: Info
 yes
totally-defined: Info
 reducible on all ground data terms