pub type FxHashMap<K, V> = HashMap<K, V, FxBuildHasher>;Expand description
Type alias for a hash map that uses the Fx hashing algorithm.
Aliased Type§
pub struct FxHashMap<K, V> { /* private fields */ }Trait Implementations§
Source§impl<K: Eq + Hash, V> LogosContains<K> for FxHashMap<K, V>
impl<K: Eq + Hash, V> LogosContains<K> for FxHashMap<K, V>
Source§fn logos_contains(&self, key: &K) -> bool
fn logos_contains(&self, key: &K) -> bool
Check if this collection contains the given value.