scalar_is_whitespace

func scalar_is_whitespace(scalar: Int) -> Bool

Tests the scalar against Unicode's White_Space property.

View Source
pub func scalar_is_whitespace(scalar: Int) -> Bool {
	_character_class(scalar: scalar) == _CC_WHITESPACE
}