commit | e7a8317ce92ee422415abb0a834d331e97fee0d4 | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Sun Oct 10 09:04:44 2021 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Sun Oct 10 09:04:44 2021 +0000 |
tree | 5af5371df8aa1fd30c5811becaccbbbd86179dab | |
parent | 829f43c1bba54e2b3b7435a5a60a7272ffadd46f [diff] | |
parent | 5939050353727549b7085621f3e2ec153a4452f2 [diff] |
Snap for 7810574 from 5939050353727549b7085621f3e2ec153a4452f2 to main-cg-testing-release Change-Id: I689ca9658c989da33b3f8af777e3b1beef178b76
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, "ÅΩ"); }
You can use this package in your project by adding the following to your Cargo.toml
:
[dependencies] unicode-normalization = "0.1.19"
no_std
+ alloc
supportThis 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
.