(&mut self)
| 135 | /// When the next byte is a part of a multi-byte character. |
| 136 | #[inline] |
| 137 | fn next_byte(&mut self) -> Option<u8> { |
| 138 | self.source.as_bytes()[self.cursor..].first().map(|&byte| { |
| 139 | self.cursor += 1; |
| 140 | byte |
| 141 | }) |
| 142 | } |
| 143 | |
| 144 | #[inline] |
| 145 | fn next_char(&mut self) -> Option<char> { |
no test coverage detected