reverse
FEEL built-in function · List functions
reverse(list)
Returns the list in reverse order.
Parameters
| Parameter | Type | Description |
|---|---|---|
| list | list | the list to reverse |
Examples
reverse([1, 2, 3])
[3, 2, 1]
Try it →
Related functions
Defined by the OMG DMN 1.6 specification, chapter 10.3.4 (built-in functions).