Checks if the intervals x, y are not equal i.e. when the intervals don't share any value
x
y
Interval.notEqual( Interval(2, 3), Interval(4, 5)) // true
Interval.notEqual( Interval(2, 3), Interval(3, 5)) // false
Interval.notEqual( Interval(2, 4), Interval(3, 5)) // false
Generated using TypeDoc
Checks if the intervals
x
,y
are not equal i.e. when the intervals don't share any valueExample
Example
Example
Returns