finishes
FEEL built-in function · Range functions
finishes(a, range)
Returns true if a ends exactly where range ends and lies within it.
Parameters
| Parameter | Type | Description |
|---|---|---|
| a | point or range | the candidate ending together with range |
| range | range | the enclosing range |
Examples
finishes(10, [1..10])
true
Try it →
finishes([5..10], [1..10])
true
Try it →
Related functions
Defined by the OMG DMN 1.6 specification, chapter 10.3.4 (built-in functions).