Array.unzip()

From ZCubes Wiki
Revision as of 04:34, 8 May 2020 by Devika (talk | contribs) (→‎Array.unzip(OtherArray))
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search


Array.unzip(OtherArray)

Reverse of Array.zip()

Split alternate elements into separate array.

1..10.unzip()

1 3 5 7 9
2 4 6 8 10

See Also

zip