(self, other: Range[_T])
| 622 | assert False, f"Unhandled case computing {self} - {other}" |
| 623 | |
| 624 | def __sub__(self, other: Range[_T]) -> Range[_T]: |
| 625 | return self.difference(other) |
| 626 | |
| 627 | def intersection(self, other: Range[_T]) -> Range[_T]: |
| 628 | """Compute the intersection of this range with the `other`. |
nothing calls this directly
no test coverage detected