unicase 1.0.1

A case-insensitive wrapper around strings.
Documentation

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);