Concatenates two readonly arrays or tuples A and B. Delegates to Tuple.Concat.
A
B
Tuple.Concat
The first readonly array or tuple.
The second readonly array or tuple.
A new type representing the concatenation of A and B.
type C1 = List.Concat<[1, 2], [3, 4]>; // readonly [1, 2, 3, 4]type C2 = List.Concat<readonly number[], readonly string[]>; // readonly (string | number)[]type C3 = List.Concat<[1], readonly number[]>; // readonly [1, ...number[]] Copy
type C1 = List.Concat<[1, 2], [3, 4]>; // readonly [1, 2, 3, 4]type C2 = List.Concat<readonly number[], readonly string[]>; // readonly (string | number)[]type C3 = List.Concat<[1], readonly number[]>; // readonly [1, ...number[]]
Concatenates two readonly arrays or tuples
AandB. Delegates toTuple.Concat.