scalar_is_control

func scalar_is_control(scalar: Int) -> Bool

Returns true when the scalar has Unicode general category Cc.

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