Type Alias RapidInlineHashMap

Source
pub type RapidInlineHashMap<K, V> = HashMap<K, V, RapidInlineBuildHasher>;
Expand description

A std::collections::HashMap type that uses the RapidInlineBuildHasher hasher.

§Example

use rapidhash::RapidInlineHashMap;
let mut map = RapidInlineHashMap::default();
map.insert(42, "the answer");

// with capacity
let mut map = RapidInlineHashMap::with_capacity_and_hasher(10, Default::default());
map.insert(42, "the answer");

Aliased Type§

pub struct RapidInlineHashMap<K, V> { /* private fields */ }