List.Zip

 

List.Zip(lists as list) as list

Takes a list of lists, lists, and returns a list of lists combining items at the same position.

Zips the two simple lists {1, 2} and {3, 4}.

List.Zip({{1, 2}, {3, 4}})

   
[List]
[List]

Zips the two simple lists of different lengths {1, 2} and {3}.

List.Zip({{1, 2}, {3}})

   
[List]
[List]
Show: