definition: |
unzip3 :: [(a, b, c)] -> ([a], [b], [c]) unzip3 [] = ([], [], []) unzip3 ((x, y, z):ts) = (x : xs, y : ys, z : zs) where (xs, ys, zs) = unzip3 ts |
demand: |
argument 1 |
deterministic: |
deterministic operation |
documentation: |
--- Transforms a list of triples into a triple of lists. |
failfree: |
_ |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{({[]}) |-> {(,,)} || ({:}) |-> {(,,)}} |
name: |
unzip3 |
precedence: |
no precedence defined |
result-values: |
{(,,)} |
signature: |
[(a, b, c)] -> ([a], [b], [c]) |
solution-complete: |
operationally complete operation |
terminating: |
yes |
totally-defined: |
reducible on all ground data terms |