Array.zip()
Revision as of 15:43, 4 March 2017 by Joseph (talk | contribs) (Created page with "* << Z3 Home * Z3 Language Documentation * Z%5E3_Array_Manipulation_Member_Functions | Listing of Z3 Array Manipulation Member F...")
Array.zip(OtherArray)
Give an sequential array with one array from each array alternated.
1..5.zip(5..10)
1 |
5 |
2 |
6 |
3 |
7 |
4 |
8 |
5 |
9 |
0 |
10 |