CHashMap support Borrow?
Created by: sbant
The std::collection::HashMap 's get function like this:
fn get<Q: ?Sized>(&self, k: &Q) -> Option<&V> where K: Borrow, Q: Hash + Eq
can CHashMap support the Borrow Trait?
let map = CHashMap::new(); let s = "some str";
so can use map.get(s), not map.get(&s.to_string())