Checks if the interval x is less than y i.e. if all the values of x are lower than the left endpoint of y
x
y
Interval.lessThan( Interval(2, 3), Interval(4, 5)) // true
Interval.lessThan( Interval(4, 5), Interval(2, 3)) // false
Generated using TypeDoc
Checks if the interval
x
is less thany
i.e. if all the values ofx
are lower than the left endpoint ofy
Example
Example
Returns