Difference between revisions of "Array.unzip()"

From ZCubes Wiki
Jump to navigation Jump to search
(Created page with "* << Z3 Home * Z3 Language Documentation * Z%5E3_Array_Manipulation_Member_Functions | Listing of Z3 Array Manipulation Member F...")
 
 
Line 17: Line 17:
 
| 2 || 4 || 6 || 8 || 10  
 
| 2 || 4 || 6 || 8 || 10  
 
|}
 
|}
 +
 +
==See Also==
 +
[[Array.zip() |zip]]

Latest revision as of 04:34, 8 May 2020


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