3个不稳定版本
0.2.0 | 2024年7月21日 |
---|---|
0.1.1 | 2020年8月20日 |
0.1.0 | 2020年8月20日 |
442 在 文本处理 中
140 次每月下载
9KB
199 行
CiString
一种保留大小写的字符串类型,但比较时不区分大小写。
示例
let upper = CiString::from("HELLO WORLD!");
let lower = CiString::from("hello world!");
assert_eq!(upper, lower);
println!("{}", upper); // -> "HELLO WORLD!"
println!("{}", lower); // -> "hello world!"
许可证
本项目采用Apache License 2.0或MIT许可证之一。
- LICENSE-APACHE 或 https://apache.ac.cn/licenses/LICENSE-2.0
- LICENSE-MIT 或 http://opensource.org/licenses/MIT
您可选择。
依赖项
~170KB