Less or equal than operator on intervals.
[a, b] <= [c, d], if a <= c && b <= d
Source
operator<=(Interval i) => this.min <= i.min && this.max <= i.max;
Less or equal than operator on intervals.
[a, b] <= [c, d], if a <= c && b <= d
operator<=(Interval i) => this.min <= i.min && this.max <= i.max;