commit | 2f2a6f6352c71f376dcaae2f6043fccb29749d33 | [log] [tgz] |
---|---|---|
author | Jeff Vander Stoep <[email protected]> | Tue Jan 31 22:08:25 2023 +0000 |
committer | Automerger Merge Worker <[email protected]> | Tue Jan 31 22:08:25 2023 +0000 |
tree | e3db980716ae532860e923ef13940d7be4493e4f | |
parent | 8cb57e14c678fce01ce49a431f83a89e29e56794 [diff] | |
parent | 44e572f2b384d35ece6c7cec29f4b4476e6c3ce3 [diff] |
Update TEST_MAPPING am: b9cc5e3e19 am: a97ee53402 am: 44e572f2b3 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/unicode-normalization/+/2411653 Change-Id: I302a6633453c36a5d2db946763ac917e79c297c1 Signed-off-by: Automerger Merge Worker <[email protected]>
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.22"
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
.