Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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}.
Usage
List.Zip({{1, 2}, {3, 4}})
Output
{
{1, 3},
{2, 4}
}
Zips the two simple lists of different lengths {1, 2} and {3}.
Usage
List.Zip({{1, 2}, {3}})
Output
{
{1, 3},
{2, null}
}