Function icu_properties::sets::lowercase
source · pub const fn lowercase() -> CodePointSetDataBorrowed<'static>
Expand description
Lowercase characters
✨ Enabled with the compiled_data
Cargo feature.
§Example
use icu::properties::sets;
let lowercase = sets::lowercase();
assert!(lowercase.contains('a'));
assert!(!lowercase.contains('A'));