_word_break_category

func _word_break_category(scalar: Int) -> Int

Looks up the Unicode word-break category assigned to scalar.

View Source
pub func _word_break_category(scalar: Int) -> Int {
	_boundary_property(
		table: _word_break_table(),
		scalar: scalar,
		width: 4,
		radix: 32
	)
}