Searched defs:has_alphanumeric (Results 1 – 2 of 2) sorted by relevance
336 fn has_alphanumeric(s: &&str) -> bool { s.chars().any(|c| is_alphanumeric(c)) } in new_unicode_sentences() function337 let has_alphanumeric: fn(&&str) -> bool = has_alphanumeric; // coerce to fn pointer in new_unicode_sentences() localVariable
678 fn has_alphanumeric(s: &&str) -> bool { s.chars().any(|c| is_alphanumeric(c)) } in new_unicode_words() function679 let has_alphanumeric: fn(&&str) -> bool = has_alphanumeric; // coerce to fn pointer in new_unicode_words() localVariable