commit | 53959d2c0c721d1de6459e4d17028abc595cff3f | [log] [tgz] |
---|---|---|
author | James Farrell <[email protected]> | Wed Sep 18 20:37:06 2024 +0000 |
committer | James Farrell <[email protected]> | Wed Sep 18 20:37:06 2024 +0000 |
tree | d81f0603c35fad63946ae4c715231b296fdc587b | |
parent | 5ce8490d11bb883a693a216142d4066d2b85bb95 [diff] |
Migrate 26 crates to monorepo tokio-util tower tower-layer tower-service tracing tracing-attributes tracing-core tracing-subscriber try-lock tungstenite twox-hash ucd-trie unicode-bidi unicode-normalization unicode-segmentation unicode-width unsafe-libyaml userfaultfd utf-8 uuid weak-table webpki which winnow x509-cert xml-rs Bug: http://b/339424309 Test: treehugger Change-Id: Ia3ba090db100df7425df70ed25424ff636610e45
Determine displayed width of char
and str
types according to Unicode Standard Annex #11 rules.
extern crate unicode_width; use unicode_width::UnicodeWidthStr; fn main() { let teststr = "Hello, world!"; let width = UnicodeWidthStr::width(teststr); println!("{}", teststr); println!("The above string is {} columns wide.", width); let width = teststr.width_cjk(); println!("The above string is {} columns wide (CJK).", width); }
NOTE: The computed width values may not match the actual rendered column width. For example, the woman scientist emoji comprises of a woman emoji, a zero-width joiner and a microscope emoji.
extern crate unicode_width; use unicode_width::UnicodeWidthStr; fn main() { assert_eq!(UnicodeWidthStr::width("👩"), 2); // Woman assert_eq!(UnicodeWidthStr::width("🔬"), 2); // Microscope assert_eq!(UnicodeWidthStr::width("👩🔬"), 4); // Woman scientist }
See Unicode Standard Annex #11 for precise details on what is and isn't covered by this crate.
unicode-width does not depend on libstd, so it can be used in crates with the #![no_std]
attribute.
You can use this package in your project by adding the following to your Cargo.toml
:
[dependencies] unicode-width = "0.1.7"