Re-exports§
pub use map_with_dict::*;
pub use map_with_dict_bitpacked::*;
pub use mphf::*;
pub use rank::*;
pub use set::*;
Modules§
- map_
with_ dict - A module providing
MapWithDict
, an immutable hash map implementation. - map_
with_ dict_ bitpacked - A module offering
MapWithDictBitpacked
, an efficient, immutable hash map implementation. - mphf
- Minimal Perfect Hash Function (MPHF) Module
- rank
RankedBits
efficiently handles rank queries on bit vectors. Optimized for minimal memory usage with ~3.125% overhead and fast lookups, it supports the crate’s focus on low-latency hash maps. For detailed methodology, refer to the related paper: Engineering Compact Data Structures for Rank and Select Queries on Bit Vectors.- set
- A module providing
Set
, an immutable set implementation backed by a MPHF.