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