cistring

Crates.iocistring
lib.rscistring
version0.2.0
sourcesrc
created_at2020-08-20 08:40:41.882916
updated_at2024-07-21 21:18:45.935132
descriptionA string type that preserve case, but compares insensitiveley.
homepagehttps://gitlab.com/INdek/cistring
repositoryhttps://gitlab.com/INdek/cistring
max_upload_size
id278535
size20,197
Afonso Bordado (afonso360)

documentation

https://docs.rs/cistring

README

CiString

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!"

License

This project is licensed under either of

at your option.

Commit count: 4

cargo fmt