Checks if x is empty, it's empty when x.lo > x.hi
x
x.lo > x.hi
Interval.isEmpty( Interval.EMPTY) // trueInterval.isEmpty( Interval.WHOLE) // falseInterval.isEmpty( // bypass empty interval check Interval().set(1, -1)) // true
Generated using TypeDoc
Checks if
x
is empty, it's empty whenx.lo > x.hi
Example
Returns