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