Takes the first 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 first N elements. If N is larger than the length of T, returns T.
type TK1 = Tuple.Take<2, [1, 2, 3]>; // readonly [1, 2]type TK2 = Tuple.Take<5, [1, 2, 3]>; // readonly [1, 2, 3]type TK3 = Tuple.Take<0, [1, 2, 3]>; // readonly [] Copy
type TK1 = Tuple.Take<2, [1, 2, 3]>; // readonly [1, 2]type TK2 = Tuple.Take<5, [1, 2, 3]>; // readonly [1, 2, 3]type TK3 = Tuple.Take<0, [1, 2, 3]>; // readonly []
Takes the first
Nelements from a readonly tupleT.