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