concatenate

FEEL built-in function · List functions

concatenate(list)

Returns one list containing the elements of all argument lists, in order.

Parameters

ParameterTypeDescription
listlisttwo or more lists to join in order

Examples

concatenate([1, 2], [3])
[1, 2, 3] Try it →
concatenate([1], [2], [3])
[1, 2, 3] Try it →

Related functions

append · union · flatten

Defined by the OMG DMN 1.6 specification, chapter 10.3.4 (built-in functions).