(s)
| 26620 | ;((this.low = s), (this.high = o), (this.length = 1 + o - s)) |
| 26621 | } |
| 26622 | overlaps(s) { |
| 26623 | return !(this.high < s.low || this.low > s.high) |
| 26624 | } |
| 26625 | touches(s) { |
| 26626 | return !(this.high + 1 < s.low || this.low - 1 > s.high) |
| 26627 | } |
no outgoing calls
no test coverage detected