(&self)
| 46 | } |
| 47 | |
| 48 | pub fn count(&self) -> i64 { |
| 49 | self.to - self.from + 1 |
| 50 | } |
| 51 | |
| 52 | /// Check overlap with an inclusive file range `[file_start, file_end]`. |
| 53 | pub fn overlaps_inclusive(&self, file_start: i64, file_end_inclusive: i64) -> bool { |
no outgoing calls