pub type RapidInlineHashSet<K> = HashSet<K, RapidInlineBuildHasher>;
Expand description
A std::collections::HashSet type that uses the RapidInlineBuildHasher hasher.
§Example
use rapidhash::RapidInlineHashSet;
let mut set = RapidInlineHashSet::default();
set.insert("the answer");
// with capacity
let mut set = RapidInlineHashSet::with_capacity_and_hasher(10, Default::default());
set.insert("the answer");
Aliased Type§
pub struct RapidInlineHashSet<K> { /* private fields */ }