pub trait NumericCharProperty<NumericValue: NumericCharPropertyValue>: CharProperty {
    fn number(&self) -> NumericValue;
}
Expand description

A Character Property with numeric values.

Examples: Numeric_Value, Canonical_Combining_Class

Required methods

The numeric value for the property value.

Implementors