uniworld 0.2.0

Correct Unicode text handling for every script: bidi, line breaking, segmentation, normalization
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Unicode property tables and dictionary data.
//!
//! UCD (auto-generated), word-break dictionaries, CLDR locale data.
//! Grapheme_Cluster_Break and Word_Break (UAX #29) implemented here.
//! Bidi_Class and bracket pairs (UAX #9) auto-generated.
//! Line_Break (UAX #14) auto-generated.

pub mod bidi_class;
pub mod casemap;
pub mod grapheme_break;
pub mod line_break;
pub mod normalization;
pub mod sentence_break;
pub mod word_break;