Returns true iff this position is at the beginning of the input.
(&self)
| 32 | impl InputAt { |
| 33 | /// Returns true iff this position is at the beginning of the input. |
| 34 | pub fn is_start(&self) -> bool { |
| 35 | self.pos == 0 |
| 36 | } |
| 37 | |
| 38 | /// Returns true iff this position is past the end of the input. |
| 39 | pub fn is_end(&self) -> bool { |
no outgoing calls
no test coverage detected