Skip to main content

List: Concat

Concatenate any number of input lists into a single list, preserving the order of inputs and elements. Differs from Iterator::Zip in that elements stay separate rather than being interleaved into tuples.

Example
Inputs: [1, 2], [3, 4], [5]
Output: [1, 2, 3, 4, 5]

Parameters

This function has no parameters.

Input

ArrayREQUIRED

One or more lists, each wired to its own slot on the unlimited array input. Joined in input-connection order.

Output

Result
The concatenated list.