(&mut self)
| 50 | /// When the next byte is a part of a multi-byte character. |
| 51 | #[inline] |
| 52 | fn next_byte(&mut self) -> Option<u8> { |
| 53 | self.source[self.cursor..].as_bytes().first().map(|&byte| { |
| 54 | self.cursor += 1; |
| 55 | byte |
| 56 | }) |
| 57 | } |
| 58 | |
| 59 | #[inline] |
| 60 | fn next_char(&mut self) -> Option<char> { |
no test coverage detected