[][src]Function unicode_linebreak::break_property

pub fn break_property(codepoint: u32) -> BreakClass

Returns the line break property of the specified code point.

Examples

use unicode_linebreak::{BreakClass, break_property};
assert_eq!(break_property(0x2CF3), BreakClass::Alphabetic);