any
FEEL built-in function · List functions
any(list) or any(b1, …, bN)
Returns true if at least one element is true, false if all are false, and null otherwise. any([]) is false.
Parameters
| Parameter | Type | Description |
|---|---|---|
| list | list of booleans | booleans, as one list or as separate arguments |
Examples
any([false, true])
true
Try it →
any([])
false
Try it →
Related functions
Defined by the OMG DMN 1.6 specification, chapter 10.3.4 (built-in functions).