Zip two tuples into a tuple of pairs.
First tuple
Second tuple
Combines two tuples by pairing elements at corresponding positions. Stops at the shorter tuple length.
type Z = TupleZip< [ 1, 2 ], [ 'a', 'b', 'c' ] >;// [ [ 1, 'a' ], [ 2, 'b' ] ] Copy
type Z = TupleZip< [ 1, 2 ], [ 'a', 'b', 'c' ] >;// [ [ 1, 'a' ], [ 2, 'b' ] ]
Zip two tuples into a tuple of pairs.