8个版本
0.1.7 | 2023年11月20日 |
---|---|
0.1.6 | 2022年3月19日 |
0.1.5 | 2021年4月22日 |
0.1.4 | 2020年7月29日 |
0.1.3 | 2020年6月27日 |
#140 在 编码
540,800 每月下载量
在 823 个crate中(直接使用8个)使用
5KB
59 行
UTF-8宽度
通过提供其第一个字节来确定UTF-8字符的宽度。
参考: https://tools.ietf.org/html/rfc3629
示例
assert_eq!(1, utf8_width::get_width(b'1'));
assert_eq!(3, utf8_width::get_width("中".as_bytes()[0]));
基准测试
cargo bench
Crates.io
https://crates.io/crates/utf8-width
文档
许可证
lib.rs
:
UTF-8宽度
通过提供其第一个字节来确定UTF-8字符的宽度。
参考: https://tools.ietf.org/html/rfc3629
示例
assert_eq!(1, utf8_width::get_width(b'1'));
assert_eq!(3, utf8_width::get_width("中".as_bytes()[0]));
基准测试
cargo bench