(&self, ch: char)
| 803 | } |
| 804 | |
| 805 | fn is_next_char(&self, ch: char) -> bool { |
| 806 | self.index + 1 < self.content_len && self.content[self.index + 1] == ch |
| 807 | } |
| 808 | |
| 809 | fn is_current_char_func(&self, func: fn(char) -> bool) -> bool { |
| 810 | self.index < self.content_len && func(self.content[self.index]) |
no outgoing calls
no test coverage detected