ArrayConcat
Alias:ArrayConcat
, Combine
Output:Array of T
Concatenates arrays or streams of entities
Parameter | Type | Required | Position | Summary |
---|---|---|---|---|
Arrays | array<array<T>> | ✔ | 1 | The arrays to concatenate |
Examples​
Example 1​
SCL​
[1,2,3] + [4,5,6]
Expected Output​
[1, 2, 3, 4, 5, 6]
Example 2​
SCL​
ArrayConcat [[1,2,3], [4,5,6]]
Expected Output​
[1, 2, 3, 4, 5, 6]
Example 3​
SCL​
Combine Arrays: [[1, 2, 3], [4, 5, 6]]
Expected Output​
[1, 2, 3, 4, 5, 6]