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