(&self)
| 221 | } |
| 222 | |
| 223 | fn is_space(&self) -> bool { |
| 224 | // TODO(jmmv): This is probably not correct regarding UTF-8 when comparing this function to |
| 225 | // the `is_whitespace` builtin. Figure out if that's true and what to do about it. |
| 226 | matches!(*self, ' ' | '\t' | '\r') |
| 227 | } |
| 228 | |
| 229 | fn is_word(&self) -> bool { |
| 230 | match *self { |
no outgoing calls
no test coverage detected