#unicode

unicode-ccc

Unicode Canonical Combining Class detection

3 releases

0.1.2 Jun 7, 2021
0.1.1 Feb 15, 2021
0.1.0 Jul 17, 2020

#715 in Text processing

Download history 7286/week @ 2022-12-01 7744/week @ 2022-12-08 6868/week @ 2022-12-15 5743/week @ 2022-12-22 5980/week @ 2022-12-29 6426/week @ 2023-01-05 6307/week @ 2023-01-12 6883/week @ 2023-01-19 7820/week @ 2023-01-26 9282/week @ 2023-02-02 9094/week @ 2023-02-09 8748/week @ 2023-02-16 8290/week @ 2023-02-23 7700/week @ 2023-03-02 7810/week @ 2023-03-09 8250/week @ 2023-03-16

33,522 downloads per month
Used in 68 crates (via rustybuzz)

MIT/Apache

17KB
475 lines

unicode-ccc

Crates.io Documentation

This library implements Unicode Canonical Combining Class detection.

use unicode_ccc::*;

assert_eq!(get_canonical_combining_class('A'), CanonicalCombiningClass::NotReordered);
assert_eq!(get_canonical_combining_class('\u{0A3C}'), CanonicalCombiningClass::Nukta);
assert_eq!(get_canonical_combining_class('\u{18A9}'), CanonicalCombiningClass::AboveLeft);

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

No runtime deps