Return the character at the current position of the parser. This panics if the current position does not point to a valid char.
(&self)
| 462 | /// |
| 463 | /// This panics if the current position does not point to a valid char. |
| 464 | fn char(&self) -> char { |
| 465 | self.char_at(self.offset()) |
| 466 | } |
| 467 | |
| 468 | /// Return the character at the given position. |
| 469 | /// |
no test coverage detected