Concatenates two readonly tuples A and B.
A
B
The first readonly tuple.
The second readonly tuple.
A new readonly tuple type representing the concatenation of A and B.
type C1 = Tuple.Concat<[1, 2], [3, 4]>; // readonly [1, 2, 3, 4]type C2 = Tuple.Concat<[], [1]>; // readonly [1]type C3 = Tuple.Concat<[1], []>; // readonly [1] Copy
type C1 = Tuple.Concat<[1, 2], [3, 4]>; // readonly [1, 2, 3, 4]type C2 = Tuple.Concat<[], [1]>; // readonly [1]type C3 = Tuple.Concat<[1], []>; // readonly [1]
Concatenates two readonly tuples
AandB.