Get the number of lines in this range.
(&self)
| 570 | |
| 571 | /// Get the number of lines in this range. |
| 572 | pub fn line_count(&self) -> u64 { |
| 573 | self.end_line - self.start_line + 1 |
| 574 | } |
| 575 | |
| 576 | /// Check if a line number is in this range. |
| 577 | pub fn contains(&self, line: u64) -> bool { |
no outgoing calls
no test coverage detected