opthash 0.4.1

Rust implementations of Elastic Hashing and Funnel Hashing
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod common;
mod elastic;
mod funnel;

#[cfg(feature = "python")]
mod python;

pub use elastic::ElasticHashMap;
pub use elastic::ElasticOptions;
pub use funnel::FunnelHashMap;
pub use funnel::FunnelOptions;