pub fn is_word_byte(c: u8) -> bool
Available on (crate features
syntax-glob
or syntax-ev
or syntax-regex
) and crate feature syntax-regex
only.Expand description
Returns true if and only if the given character is an ASCII word character.
An ASCII word character is defined by the following character class:
[_0-9a-zA-Z]
.