Returns true iff the character is a word character. If the character is absent, then false is returned.
(self)
| 371 | /// |
| 372 | /// If the character is absent, then false is returned. |
| 373 | pub fn is_word_char(self) -> bool { |
| 374 | char::from_u32(self.0).map_or(false, syntax::is_word_character) |
| 375 | } |
| 376 | |
| 377 | /// Returns true iff the byte is a word byte. |
| 378 | /// |