Array.unzip()

Revision as of 15:48, 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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)


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