Zips up an array of arrays, i.e. forms pairs, triples, ... from a
list of two, three, ... lists.
Examples:
zipLists([[1, 2, 3], [4, 5, 6]]) === [[1,4], [2, 5], [3, 6]],
zipLists([[99, 976], [3, 2], [4, 7]]) === [[99, 3, 4], [976, 2, 7]].
Throws a TypeError if the lengths of the sublists are not all equal.
Zips up an array of arrays, i.e. forms pairs, triples, ... from a list of two, three, ... lists. Examples: zipLists([[1, 2, 3], [4, 5, 6]]) === [[1,4], [2, 5], [3, 6]], zipLists([[99, 976], [3, 2], [4, 7]]) === [[99, 3, 4], [976, 2, 7]]. Throws a
TypeError
if the lengths of the sublists are not all equal.