Skip to content

List Concat

The list::concat function merges multiple lists into a single list.

Syntax

list::concat(<list1>, <list2>, ...)

Parameters

  • list1, list2, ...: Two or more lists to be concatenated.

Returns

  • List: A new list containing all elements from the input lists.

Example

Try it out below!
list::concat([1, 2], [3, 4], [5])

This function is useful for combining data from multiple sources into a single list for processing or analysis.