Type Alias FastHashMap

Source
pub type FastHashMap<KeyT, ValueT> = HashMap<KeyT, ValueT, RandomState>;
Expand description

Fast HashMap.

The implementation uses ahash::RandomState.

Aliased Typeยง

struct FastHashMap<KeyT, ValueT> { /* private fields */ }