Concatenate two tuples.
First tuple
Second tuple
Creates a new tuple type by appending the elements of the second tuple to the end of the first tuple.
type C = TupleConcat< [ 1, 2 ], [ 3, 4 ] >; // [ 1, 2, 3, 4 ] Copy
type C = TupleConcat< [ 1, 2 ], [ 3, 4 ] >; // [ 1, 2, 3, 4 ]
Concatenate two tuples.