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

ParameterTypeDescription
range1rangethe range that starts first
range2rangethe range it overlaps into

Examples

overlaps before([1..5], [3..8])
overlaps before([3..8], [1..5])

Related functions

overlaps · overlaps after

Defined by the OMG DMN 1.6 specification, chapter 10.3.4 (built-in functions).