Check if a line number is in this range.
(&self, line: u64)
| 575 | |
| 576 | /// Check if a line number is in this range. |
| 577 | pub fn contains(&self, line: u64) -> bool { |
| 578 | line >= self.start_line && line <= self.end_line |
| 579 | } |
| 580 | |
| 581 | /// Try to extend this range with another credit. |
| 582 | /// |
no outgoing calls