Zips two lists as the list of tuple.
The left-side list.
The zipped list.
const aList = fromArray([1, 4, 2]);const bList = fromArray([3, 5, 2]);expect(toArray(zip(aList)(bList))).toStrictEqual([ [1, 3], [4, 5], [2, 2],]); Copy
const aList = fromArray([1, 4, 2]);const bList = fromArray([3, 5, 2]);expect(toArray(zip(aList)(bList))).toStrictEqual([ [1, 3], [4, 5], [2, 2],]);
Zips two lists as the list of tuple.