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