Crate unicase [−] [src]
Case
Case provices a way of specifying strings that are case-insensitive.
Example
use unicase::UniCase; let a = UniCase("foobar"); let b = UniCase("FoObAr"); assert_eq!(a, b);
Structs
UniCase |
Case Insensitive wrapper of strings. |