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