1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//! A Rust implementation of the MetroHash algorithm.
//!
//! MetroHash is a high quality, high performance hash algorithm
//!
//! # Example
//!
//! ```rust
//! use metrohash::MetroHashMap;
//!
//! let mut hash = MetroHashMap::default();
//! hash.insert(1000, "1000");
//! assert_eq!(hash.get(&1000), Some(&"1000"));
//! ```

use std::collections::{HashMap, HashSet};
use std::hash::BuildHasherDefault;

mod metrohash64;
mod metrohash128;
mod utils;

pub use metrohash64::*;
pub use metrohash128::*;

pub type MetroHash = MetroHash64;

/// A builder for MetroHash.
pub type MetroBuildHasher = BuildHasherDefault<MetroHash>;

/// A `HashMap` using a default MetroHash.
pub type MetroHashMap<K, V> = HashMap<K, V, MetroBuildHasher>;

/// A `HashSet` using a default MetroHash.
pub type MetroHashSet<V> = HashSet<V, MetroBuildHasher>;


#[cfg(test)]
mod tests;