(&self, func: fn(char) -> bool)
| 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]) |
| 811 | } |
| 812 | |
| 813 | fn has_next(&self) -> bool { |
| 814 | self.index < self.content_len |
no outgoing calls
no test coverage detected