twizzler/collections/hachage/
mod.rs

1pub type DefaultHashBuilder = ahash::RandomState;
2
3pub mod raw;
4mod control;
5mod benches;
6pub mod map;
7
8pub use map::{PersistentHashMap, PHMsession};
9
10use raw::HashTableAlloc;
11pub type PersistentHashMapBase<K, V, S = DefaultHashBuilder, A = HashTableAlloc> =
12    raw::RawTable<(K, V), S, A>;