zip
Combines two lists into a list of pairs.
Description
The zip
function returns a list containing records with two fields left
and
right
, each containing the respective elements of the input lists.
If both lists are null, zip
returns null. If one of the lists is null or has a
mismatching length, missing values are filled in with nulls, using the longer
list's length, and a warning is emitted.