[−][src]Trait hyperloglogplus::HyperLogLog
A trait that should be implemented by any HyperLogLog variant.
Required methods
fn add(&mut self, value: &H)
Adds a new value to the multiset.
fn count(&mut self) -> f64
Estimates the cardinality of the multiset.
Implementors
impl<H: ?Sized, B> HyperLogLog<H> for HyperLogLogPF<H, B> where
H: Hash,
B: BuildHasher,
[src]
H: Hash,
B: BuildHasher,
fn add(&mut self, value: &H)
[src]
Adds a new value to the multiset.
fn count(&mut self) -> f64
[src]
Estimates the cardinality of the multiset.
impl<H: ?Sized, B> HyperLogLog<H> for HyperLogLogPlus<H, B> where
H: Hash,
B: BuildHasher,
[src]
H: Hash,
B: BuildHasher,