append
FEEL built-in function · List functions
append(list, item…)
Returns a new list with the items added to the end.
Parameters
| Parameter | Type | Description |
|---|---|---|
| list | list | the source list |
| item | any | one or more values to add at the end |
Examples
append([1], 2, 3)
[1, 2, 3]
Try it →
Related functions
Defined by the OMG DMN 1.6 specification, chapter 10.3.4 (built-in functions).