before

FEEL built-in function · Range functions

before(a, b)

Returns true if a lies entirely before b with no overlap.

Parameters

ParameterTypeDescription
apoint or rangethe earlier candidate
bpoint or rangethe later candidate

Examples

before(1, 10)
before([1..5], [6..10])
before(10, [1..5])

Related functions

after · meets

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