Peeks at the next character without consuming it
(&mut self)
| 271 | |
| 272 | // Peeks at the next character without consuming it |
| 273 | fn peek(&mut self) -> Option<char> { |
| 274 | self.iter.peek().map(|&(_, c)| c) |
| 275 | } |
| 276 | |
| 277 | // Looks ahead at the next N characters without consuming them |
| 278 | fn check_next(&self, n: usize) -> Option<&str> { |
no outgoing calls
no test coverage detected