scalar_is_digit

func scalar_is_digit(scalar: Int) -> Bool

Tests whether Unicode assigns the scalar decimal or digit numeric status.

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