append

FEEL built-in function · List functions

append(list, item)

Returns a new list with the items added to the end.

Parameters

ParameterTypeDescription
listlistthe source list
itemanyone or more values to add at the end

Examples

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

Related functions

insert before · concatenate

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