pub const fn quotation_mark() -> CodePointSetDataBorrowed<'static>
Expand description
Punctuation characters that function as quotation marks.
โจ Enabled with the compiled_data
Cargo feature.
๐ Help choosing a constructor
ยงExample
use icu::properties::sets;
let quotation_mark = sets::quotation_mark();
assert!(quotation_mark.contains('\''));
assert!(quotation_mark.contains('โ')); // U+201E DOUBLE LOW-9 QUOTATION MARK
assert!(!quotation_mark.contains('<'));