1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*!
Character properties and textual analysis.
*/

// Avoid errors for generated Unicode data.
#![allow(clippy::upper_case_acronyms)]

mod analyze;
mod compose;
mod lang;
mod lang_data;
mod unicode;
mod unicode_data;

pub mod cluster;

pub use analyze::{analyze, Analyze};
pub use lang::{Cjk, Language};
pub use unicode::*;