remove
FEEL built-in function · List functions
remove(list, position)
Returns a new list with the element at the given position removed.
Parameters
| Parameter | Type | Description |
|---|---|---|
| list | list | the source list |
| position | number | 1-based position to remove; negative counts from the end |
Examples
remove([1, 2, 3], 2)
[1, 3]
Try it →
Related functions
insert before · sublist · list replace
Defined by the OMG DMN 1.6 specification, chapter 10.3.4 (built-in functions).