Quellcodebibliothek
Statistik
Leitseite
products
/
Sources
/
formale Sprachen
/
C
/
Firefox
/
third_party
/
rust
/
unicase
/ (
Firefox Browser
Version 153.0.1
©
) Datei vom 27.6.2026 mit Größe 951 B
Quelle README.md Sprache: unbekannt
Spracherkennung für: .md vermutete Sprache: Unknown {[0] [0] [0]} [Methode: Schwerpunktbildung, einfache Gewichte, sechs Dimensionen]
# unicase
[](ht
tps://travis-ci.org/seanmonstar/unicase)
[Documentation](
https://docs.rs/unicase)
Compare strings when case is not important (using Unicode Case-folding).
```rust
// 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
- Apache License, Version
2
.
0
([LICENSE-APACHE](LICENSE-APACHE) or
http://apache.org/li
censes/LICENSE-
2
.
0
)
- MIT license ([LICENSE-MIT](LICENSE-MIT) or
http://opensource.org/licenses/MIT)
### Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclus
ion in the work by you, as defined in the Apache-
2
.
0
license, shall be dual licensed as above, with
out any additional terms or conditions.
[Dauer der Verarbeitung: 0.41 Sekunden]
2026-08-25