Skip to main content
Version: v0.19.0-alpha 🚧

ArrayConcat

Alias:ArrayConcat, Combine

Output:Array of T

Concatenates arrays or streams of entities

ParameterTypeRequiredPositionSummary
Arraysarray<array<T>>✔1The 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]