Crate entropy_map

Source

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.