The first readonly tuple.
The second readonly tuple.
type Z1 = Tuple.Zip<[1, 2], ['a', 'b']>; // readonly [readonly [1, 'a'], readonly [2, 'b']]
type Z2 = Tuple.Zip<[1, 2, 3], ['a', 'b']>; // readonly [readonly [1, 'a'], readonly [2, 'b']]
type Z3 = Tuple.Zip<[1, 2], ['a', 'b', 'c']>; // readonly [readonly [1, 'a'], readonly [2, 'b']]
type Z4 = Tuple.Zip<[], ['a']>; // readonly []
Creates pairs of elements from two readonly tuples
AandB. The resulting tuple will have the length of the shorter input tuple.