No description
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
Daniel Baumann e96e550ebb
Releasing fastforward version 2.9.0-1~ffwd13+u1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2026-07-20 09:27:07 +02:00
.github/workflows Adding upstream version 2.9.0. 2026-07-20 09:26:52 +02:00
debian Releasing fastforward version 2.9.0-1~ffwd13+u1. 2026-07-20 09:27:07 +02:00
src Adding upstream version 2.9.0. 2026-07-20 09:26:52 +02:00
.cargo_vcs_info.json Adding upstream version 2.9.0. 2026-07-20 09:26:52 +02:00
.gitignore Adding upstream version 2.9.0. 2026-07-20 09:26:52 +02:00
Cargo.lock Adding upstream version 2.9.0. 2026-07-20 09:26:52 +02:00
Cargo.toml Adding upstream version 2.9.0. 2026-07-20 09:26:52 +02:00
Cargo.toml.orig Adding upstream version 2.9.0. 2026-07-20 09:26:52 +02:00
LICENSE-APACHE Adding upstream version 2.9.0. 2026-07-20 09:26:52 +02:00
LICENSE-MIT Adding upstream version 2.9.0. 2026-07-20 09:26:52 +02:00
README.md Adding upstream version 2.9.0. 2026-07-20 09:26:52 +02:00

unicase

crates.io Released API docs MIT licensed CI

Compare strings when case is not important (using Unicode Case-folding).

// ignore ASCII case
let a = UniCase::new("foobar");
let b = UniCase::new("FOOBAR");

assert_eq!(a, b);

// using unicode case-folding
let c = UniCase::new("Maße")
let d = UniCase::new("MASSE");
assert_eq!(c, d);

License

Licensed under either of

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.