commit | 0d43f795ec145a5d33c4d51c64fa2be59d472f9d | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Sat Sep 21 01:18:21 2024 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Sat Sep 21 01:18:21 2024 +0000 |
tree | 48c8bec55eee423880da7c9640c0e60d43128584 | |
parent | d3030bae77905c45f4b58376c7e004efdb06061e [diff] | |
parent | 09e5a88dba458a5a410166ff5d2591aa3f016607 [diff] |
Snap for 12397575 from 09e5a88dba458a5a410166ff5d2591aa3f016607 to 25D4-release Change-Id: I368c63c7dbcae3f35ee039faa592cf88d570fb61
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
.