commit | 44e572f2b384d35ece6c7cec29f4b4476e6c3ce3 | [log] [tgz] |
---|---|---|
author | Jeff Vander Stoep <[email protected]> | Tue Jan 31 20:58:10 2023 +0000 |
committer | Automerger Merge Worker <[email protected]> | Tue Jan 31 20:58:10 2023 +0000 |
tree | e3db980716ae532860e923ef13940d7be4493e4f | |
parent | ad7d64fe8c8fb2a7e82e81bb611441dffac04b67 [diff] | |
parent | a97ee5340254050b54580068f5c4bcc7397659e0 [diff] |
Update TEST_MAPPING am: b9cc5e3e19 am: a97ee53402 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/unicode-normalization/+/2411653 Change-Id: I9383153864221f6e4e9784fa5ac2a16e65b8e9ba 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
.