Type Definition int_hash::IntHashMap

source ·
pub type IntHashMap<K, V> = HashMap<K, V, IntBuildHasher>;
Expand description

Type alias for a hashmap using IntHasher hashing.

Example

use int_hash::IntHashMap;
let mut map: IntHashMap<usize, &str> = IntHashMap::default();
map.insert(22, "abc");