merge() Function

Takes a variable number of lists and merges them into a single list (or a list of lists) that is the size of the largest list provided.

Syntax

merge( [list, … ] )

list: (Any Type Array) Variable number of lists to merge into one list.

Returns

Any Type

Notes

Shorter lists are padded with null entries.

Use this function when you have a looping function referencing a rule or function that takes more than one argument. The order of the argument must match the order of your rule input parameters.

Examples

merge({1, 2, 3}, {4, 5, 6}) returns 1, 4, 2, 5, 3, 6

Open in Github Built: Thu, Feb 23, 2023 (02:59:22 PM)

On This Page

FEEDBACK