Home
last modified time | relevance | path

Searched refs:is_nfc_stream_safe_quick (Results 1 – 2 of 2) sorted by relevance

/external/rust/crates/unicode-normalization/src/
Dquick_check.rs96 pub fn is_nfc_stream_safe_quick<I: Iterator<Item = char>>(s: I) -> IsNormalized { in is_nfc_stream_safe_quick() function
149 match is_nfc_stream_safe_quick(s.chars()) { in is_nfc_stream_safe()
168 use super::{is_nfc_stream_safe_quick, is_nfd_stream_safe_quick, IsNormalized};
182 assert_eq!(is_nfc_stream_safe_quick(okay.chars()), IsNormalized::Maybe); in test_stream_safe_nfc()
185 assert_eq!(is_nfc_stream_safe_quick(too_much.chars()), IsNormalized::No); in test_stream_safe_nfc()
Dlib.rs57 is_nfc, is_nfc_quick, is_nfc_stream_safe, is_nfc_stream_safe_quick, is_nfd, is_nfd_quick,