includes
FEEL built-in function · Range functions
includes(range, a)
Returns true if range fully contains a, endpoints included.
Parameters
| Parameter | Type | Description |
|---|---|---|
| range | range | the enclosing range |
| a | point or range | the contained candidate |
Examples
includes([1..10], 5)
true
Try it →
includes([1..10], [4..6])
true
Try it →
Related functions
Defined by the OMG DMN 1.6 specification, chapter 10.3.4 (built-in functions).