overlaps before
FEEL built-in function · Range functions
overlaps before(range1, range2)
Returns true if range1 starts before range2 and they overlap without either containing the other.
Parameters
| Parameter | Type | Description |
|---|---|---|
| range1 | range | the range that starts first |
| range2 | range | the range it overlaps into |
Examples
overlaps before([1..5], [3..8])
true
Try it →
overlaps before([3..8], [1..5])
false
Try it →
Related functions
Defined by the OMG DMN 1.6 specification, chapter 10.3.4 (built-in functions).