MCPcopy Create free account
hub / github.com/davidblewett/rure-python / is_word_char

Method is_word_char

regex/src/input.rs:373–375  ·  view source on GitHub ↗

Returns true iff the character is a word character. If the character is absent, then false is returned.

(self)

Source from the content-addressed store, hash-verified

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 ///

Callers 1

is_empty_matchMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected