FastConcurrentHashMap

Type Alias FastConcurrentHashMap 

Source
pub type FastConcurrentHashMap<KeyT, ValueT> = HashMap<KeyT, ValueT, RandomState>;
Available on crate feature fast_collections only.
Expand description

Fast concurrent HashMap.

The implementation uses papaya::HashMap and ahash::RandomState.

Aliased Typeยง

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