ZVON > References > Haskell reference
| Indexes | Syntax | Prelude | Ratio | Complex | Numeric | Ix | Array | >> List << | Maybe | Char | Monad | IO | Directory | System | Time | Locale | CPUTime | Random

Module: List
Function: unzip5
Type: [(a,b,c,d,e)] -> ([a],[b],[c],[d],[e])
Description: reverse zip5
Related: unzip4, unzip6, unzip7, zip4, zip5, zip6, zip7, zipWith4, zipWith5, zipWith6, zipWith7

Example 1

Input: unzip5 [(1,2,3,4,5),(1,2,3,4,5),(5,4,1,0,-5)]

Output: ([1,1,5],[2,2,4],[3,3,1],[4,4,0],[5,5,-5])