pub type FastConcurrentHashMap<KeyT, ValueT> = HashMap<KeyT, ValueT, RandomState>;Expand description
Fast concurrent HashMap.
The implementation uses papaya::HashMap and ahash::RandomState.
Aliased Typeยง
struct FastConcurrentHashMap<KeyT, ValueT> { /* private fields */ }