| Crates.io | cistring |
| lib.rs | cistring |
| version | 0.2.0 |
| created_at | 2020-08-20 08:40:41.882916+00 |
| updated_at | 2024-07-21 21:18:45.935132+00 |
| description | A string type that preserve case, but compares insensitiveley. |
| homepage | https://gitlab.com/INdek/cistring |
| repository | https://gitlab.com/INdek/cistring |
| max_upload_size | |
| id | 278535 |
| size | 20,197 |
A string type that preserve case, but compares insensitiveley.
Example:
let upper = CiString::from("HELLO WORLD!");
let lower = CiString::from("hello world!");
assert_eq!(upper, lower);
println!("{}", upper); // -> "HELLO WORLD!"
println!("{}", lower); // -> "hello world!"
This project is licensed under either of
at your option.