(&mut self)
| 89 | /// When the next byte is a part of a multi-byte character. |
| 90 | #[inline] |
| 91 | fn next_byte(&mut self) -> Option<u8> { |
| 92 | self.source[self.cursor..].as_bytes().first().map(|&byte| { |
| 93 | self.cursor += 1; |
| 94 | byte |
| 95 | }) |
| 96 | } |
| 97 | |
| 98 | #[inline] |
| 99 | fn next_char(&mut self) -> Option<char> { |
no test coverage detected