commit | 1e0cf616d4659db9303775361dcd71f52d6f7f38 | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Sat Sep 21 01:16:22 2024 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Sat Sep 21 01:16:22 2024 +0000 |
tree | 48c8bec55eee423880da7c9640c0e60d43128584 | |
parent | 01e7372d7af69e2a9062c31db82a79818dff9b5f [diff] | |
parent | 09e5a88dba458a5a410166ff5d2591aa3f016607 [diff] |
Snap for 12397640 from 09e5a88dba458a5a410166ff5d2591aa3f016607 to 24Q4-release Change-Id: Iad74cc0cb200213816e586540279c03c6cf6a39a
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
.