pub type RapidSmallMap<const N: usize, K, V> = SmallMap<N, K, V, RandomState, RandomState, 8>;Expand description
Aliased Type§
pub enum RapidSmallMap<const N: usize, K, V> {
Heap(HashMap<K, V, RandomState<false, true, false, false>>),
Inline(Inline<N, K, V, RandomState<false, true, false, false>, RandomState<false, true, false, false>, 8>),
}Variants§
Heap(HashMap<K, V, RandomState<false, true, false, false>>)
Heap-allocated storage using hashbrown::HashMap.
Inline(Inline<N, K, V, RandomState<false, true, false, false>, RandomState<false, true, false, false>, 8>)
Inline storage with SIMD-accelerated lookups.