qht 0.1.0

Implementation of Quotient Hash Tables variants QHTc, QQHTc, QQHTDc
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub use std::collections::hash_map::DefaultHasher;
pub use std::hash::{Hash, Hasher};

// --------------------------------------------------------------------------------
// Elements

/// This struct defines which elements are processed as stream elements
#[derive(Clone, Copy, Hash)]
pub struct Element {
    /// Value held by the element
    pub value: u64,
}