include!; // generated by build.rs
const MASK: usize = BLOCK_SIZE - 1;
const SHIFT: usize = MASK.count_ones as usize;
/// Look up the joining group for a character.
///
/// ### Example
///
/// ```
/// use unicode_joining_type::{get_joining_group, JoiningGroup};
///
/// assert_eq!(get_joining_group('ھ'), JoiningGroup::KnottedHeh);
/// ```