Skips the first N elements from a readonly tuple T.
N
T
The number of elements to skip (must be a non-negative integer literal).
The readonly tuple type.
A new readonly tuple type containing the elements after the first N. If N is larger than the length of T, returns readonly [].
readonly []
type SK1 = Tuple.Skip<1, [1, 2, 3]>; // readonly [2, 3]type SK2 = Tuple.Skip<3, [1, 2, 3]>; // readonly []type SK3 = Tuple.Skip<0, [1, 2, 3]>; // readonly [1, 2, 3] Copy
type SK1 = Tuple.Skip<1, [1, 2, 3]>; // readonly [2, 3]type SK2 = Tuple.Skip<3, [1, 2, 3]>; // readonly []type SK3 = Tuple.Skip<0, [1, 2, 3]>; // readonly [1, 2, 3]
Skips the first
Nelements from a readonly tupleT.