scalar_is_uppercase

func scalar_is_uppercase(scalar: Int) -> Bool

Tests the scalar against Unicode's Uppercase property.

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