Skip to main content

HashMap

Type Alias HashMap 

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

Fast hash map using FxHash algorithm.

This type alias is used throughout the crate for better performance compared to the standard library’s HashMap.

Aliased Type§

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