Crate unicode_joining_type

Source
Expand description

Look up the joining type or joining group for a character.

§Example

use unicode_joining_type::{get_joining_group, get_joining_type, JoiningGroup, JoiningType};

assert_eq!(get_joining_type('A'), JoiningType::NonJoining);
assert_eq!(get_joining_group('ھ'), JoiningGroup::KnottedHeh);

Enums§

JoiningGroup
JoiningType

Constants§

UNICODE_VERSION
The version of Unicode that this version of unicode-joining-type was generated from.

Functions§

get_joining_group
Look up the joining group for a character.
get_joining_type
Look up the joining type for a character.