scalar_is_titlecase

func scalar_is_titlecase(scalar: Int) -> Bool

Returns true when the scalar has Unicode general category Lt.

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