scalar_is_decimal

func scalar_is_decimal(scalar: Int) -> Bool

Returns true when the scalar has Unicode general category Nd.

View Source
pub func scalar_is_decimal(scalar: Int) -> Bool {
	_has_property(scalar: scalar, bit: 8)
}