Computes the distance between the endpoints of the interval i.e. x.hi - x.lo
x.hi - x.lo
Interval.width( Interval(1, 2)) // 1Interval.width( Interval(-1, 1)) // 2Interval.width( Interval(1, 1)) // next(0) ~5e-324Interval.width( Interval.EMPTY) // 0
Generated using TypeDoc
Computes the distance between the endpoints of the interval i.e.
x.hi - x.lo
Example
Returns