You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jianglk.darker
7ee447c011
|
4 months ago | |
---|---|---|
.. | ||
benches | 4 months ago | |
scripts | 4 months ago | |
src | 4 months ago | |
.cargo_vcs_info.json | 4 months ago | |
.travis.yml | 4 months ago | |
Android.bp | 4 months ago | |
COPYRIGHT | 4 months ago | |
Cargo.toml | 4 months ago | |
Cargo.toml.orig | 4 months ago | |
LICENSE | 4 months ago | |
LICENSE-APACHE | 4 months ago | |
LICENSE-MIT | 4 months ago | |
METADATA | 4 months ago | |
MODULE_LICENSE_APACHE2 | 4 months ago | |
OWNERS | 4 months ago | |
README.md | 4 months ago | |
TEST_MAPPING | 4 months ago | |
cargo2android.json | 4 months ago |
README.md
unicode-normalization
Unicode character composition and decomposition utilities as described in Unicode Standard Annex #15.
This crate requires Rust 1.36+.
extern crate unicode_normalization;
use unicode_normalization::char::compose;
use unicode_normalization::UnicodeNormalization;
fn main() {
assert_eq!(compose('A','\u{30a}'), Some('Å'));
let s = "ÅΩ";
let c = s.nfc().collect::<String>();
assert_eq!(c, "ÅΩ");
}
crates.io
You can use this package in your project by adding the following
to your Cargo.toml
:
[dependencies]
unicode-normalization = "0.1.16"
no_std
+ alloc
support
This crate is completely no_std
+ alloc
compatible. This can be enabled by disabling the std
feature, i.e. specifying default-features = false
for this crate on your Cargo.toml
.