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