CaseInsensitiveHashMap

A wrapper around the std::collections::HashMap that uses case-insensitive Strings for keys.

Since this is a simple wrapper around the standard HashMap, please see its documentation for more information.

The key type of the CaseInsensitiveHashMap is always UniCase<String>. Most methods that have a key parameter have a constraint <K: Into<Key>>. This means that you can call them with a String, a &str or a UniCase<String> if you already have one. This make the API more ergonomic than the alternative of using UniCase<String> directly as a key type in your own std::collections::HashMap.

Examples

``` use unicase::UniCase; use caseinsensitivehashmap::CaseInsensitiveHashMap;

let mut map = CaseInsensitiveHashMap::new(); map.insert("a", 20); map.insert("B".to_string(), 40);

// All these are valid key forms. assert!(map.containskey("A")); assert!(map.containskey("A".tostring())); let uc = UniCase::new("A".tostring()); assert!(map.contains_key(uc));

// Lookup of values is case-insensitive. asserteq!(map.get("a"), Some(&20)); asserteq!(map.get("A"), Some(&20));

asserteq!(map["a"], 20); asserteq!(map["A"], 20); ```

Implementation

This use the UniCase crate to handle the case-insensitivity. Strings that are used as keys are wrapped in UniCase objects so that they hash and compare for equality in a case-insensitive manner.