(&self)
| 213 | |
| 214 | impl CharOps for char { |
| 215 | fn is_separator(&self) -> bool { |
| 216 | match *self { |
| 217 | '\n' | ':' | '(' | ')' | '\'' | '=' | '<' | '>' | ';' | ',' | '+' | '-' | '*' | '/' |
| 218 | | '^' => true, |
| 219 | ch => ch.is_space(), |
| 220 | } |
| 221 | } |
| 222 | |
| 223 | fn is_space(&self) -> bool { |
| 224 | // TODO(jmmv): This is probably not correct regarding UTF-8 when comparing this function to |
no test coverage detected