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

ParameterTypeDescription
listlist of booleansbooleans, as one list or as separate arguments

Examples

any([false, true])
any([])

Related functions

all

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