(&self)
| 74 | /// Peek the next two chars |
| 75 | #[inline(always)] |
| 76 | fn peek2(&self) -> (char, char) { |
| 77 | let c0 = self.peek_char_at(0); |
| 78 | let c1 = self.peek_char_at(c0.len_utf8()); |
| 79 | (c0, c1) |
| 80 | } |
| 81 | |
| 82 | /// Peek the next three chars |
| 83 | #[inline(always)] |
no test coverage detected