Takes the last N elements from a readonly tuple T.
N
T
The number of elements to take (must be a non-negative integer literal).
The readonly tuple type.
A new readonly tuple type containing the last N elements. If N is larger than the length of T, returns T.
type TL1 = Tuple.TakeLast<2, [1, 2, 3]>; // readonly [2, 3]type TL2 = Tuple.TakeLast<5, [1, 2, 3]>; // readonly [1, 2, 3]type TL3 = Tuple.TakeLast<0, [1, 2, 3]>; // readonly [] Copy
type TL1 = Tuple.TakeLast<2, [1, 2, 3]>; // readonly [2, 3]type TL2 = Tuple.TakeLast<5, [1, 2, 3]>; // readonly [1, 2, 3]type TL3 = Tuple.TakeLast<0, [1, 2, 3]>; // readonly []
Takes the last
Nelements from a readonly tupleT.