Returns true iff this position is past the end of the input.
(&self)
| 37 | |
| 38 | /// Returns true iff this position is past the end of the input. |
| 39 | pub fn is_end(&self) -> bool { |
| 40 | self.c.is_none() && self.byte.is_none() |
| 41 | } |
| 42 | |
| 43 | /// Returns the character at this position. |
| 44 | /// |