(&self, ch: char)
| 799 | } |
| 800 | |
| 801 | fn is_current_char(&self, ch: char) -> bool { |
| 802 | self.index < self.content_len && self.content[self.index] == ch |
| 803 | } |
| 804 | |
| 805 | fn is_next_char(&self, ch: char) -> bool { |
| 806 | self.index + 1 < self.content_len && self.content[self.index + 1] == ch |
no outgoing calls
no test coverage detected