Home
last modified time | relevance | path

Searched defs:has_alphanumeric (Results 1 – 2 of 2) sorted by relevance

/external/rust/crates/unicode-segmentation/src/
Dsentence.rs336 fn has_alphanumeric(s: &&str) -> bool { s.chars().any(|c| is_alphanumeric(c)) } in new_unicode_sentences() function
337 let has_alphanumeric: fn(&&str) -> bool = has_alphanumeric; // coerce to fn pointer in new_unicode_sentences() localVariable
Dword.rs678 fn has_alphanumeric(s: &&str) -> bool { s.chars().any(|c| is_alphanumeric(c)) } in new_unicode_words() function
679 let has_alphanumeric: fn(&&str) -> bool = has_alphanumeric; // coerce to fn pointer in new_unicode_words() localVariable