| 488 | return tmp == other; |
| 489 | } |
| 490 | bool intersects(T start, T len) const { |
| 491 | interval_set a; |
| 492 | a.insert(start, len); |
| 493 | interval_set i; |
| 494 | i.intersection_of( *this, a ); |
| 495 | if (i.empty()) return false; |
| 496 | return true; |
| 497 | } |
| 498 | |
| 499 | // outer range of set |
| 500 | bool empty() const { |
nothing calls this directly
no test coverage detected