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