before
FEEL built-in function · Range functions
before(a, b)
Returns true if a lies entirely before b with no overlap.
Parameters
| Parameter | Type | Description |
|---|---|---|
| a | point or range | the earlier candidate |
| b | point or range | the later candidate |
Examples
before(1, 10)
true
Try it →
before([1..5], [6..10])
true
Try it →
before(10, [1..5])
false
Try it →
Related functions
Defined by the OMG DMN 1.6 specification, chapter 10.3.4 (built-in functions).