(&self)
| 45 | /// Peek the next char (decoding UTF-8 if needed). Returns EOF ('\0') if at end. |
| 46 | #[inline(always)] |
| 47 | fn peek_char(&self) -> char { |
| 48 | self.peek_char_at(0) |
| 49 | } |
| 50 | |
| 51 | /// Peek a char at offset `n` bytes from current position. |
| 52 | #[inline(always)] |
no test coverage detected