| ZVON > References > Haskell reference |
| Intro / Search / ZVON |
| | Indexes | Syntax | >> Prelude << | Ratio | Complex | Numeric | Ix | Array | List | Maybe | Char | Monad | IO | Directory | System | Time | Locale | CPUTime | Random |
| Module: | Prelude |
|---|---|
| Function: | unzip |
| Type: | [(a,b)] -> ([a],[b]) |
| Description: | reverse zip |
| Related: | unzip3, zip, zip3, zipWith, zipWith3 |
Input: unzip [(1,2),(2,3),(3,4)]
Output: ([1,2,3],[2,3,4])