scalar_is_printable

func scalar_is_printable(scalar: Int) -> Bool

Excludes control, format, surrogate, private-use, and unassigned categories.

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