Drop the first N elements of a tuple.
Tuple type
Number of elements to drop
Produces a new tuple with the first N elements removed. If N exceeds the tuple length, returns an empty tuple.
type T = TupleDrop< [ 1, 2, 3, 4 ], 2 >; // [ 3, 4 ] Copy
type T = TupleDrop< [ 1, 2, 3, 4 ], 2 >; // [ 3, 4 ]
Drop the first N elements of a tuple.