#[non_exhaustive]pub struct HexDigit;Expand description
Characters commonly used for the representation of hexadecimal numbers, plus their compatibility equivalents.
§Example
use icu::properties::CodePointSetData;
use icu::properties::props::HexDigit;
let hex_digit = CodePointSetData::new::<HexDigit>();
assert!(hex_digit.contains('0'));
assert!(!hex_digit.contains('੩')); // U+0A69 GURMUKHI DIGIT THREE
assert!(hex_digit.contains('f'));
assert!(hex_digit.contains('f')); // U+FF46 FULLWIDTH LATIN SMALL LETTER F
assert!(hex_digit.contains('F')); // U+FF26 FULLWIDTH LATIN CAPITAL LETTER F
assert!(!hex_digit.contains('Ä')); // U+00C4 LATIN CAPITAL LETTER A WITH DIAERESIS