moka/cht/
map.rs

1//! A lock-free hash map implemented with bucket pointer arrays, open addressing,
2//! and linear probing.
3
4pub(crate) mod bucket;
5pub(crate) mod bucket_array_ref;
6
7use std::collections::hash_map::RandomState;
8
9/// Default hasher for `HashMap`.
10pub type DefaultHashBuilder = RandomState;