pub struct HyperLogLogV2 { /* private fields */ }Expand description
HyperLogLog cardinality estimator with 2^b registers.
Implementations§
Source§impl HyperLogLogV2
impl HyperLogLogV2
Sourcepub fn num_registers(&self) -> usize
pub fn num_registers(&self) -> usize
Number of registers.
Sourcepub fn merge(&mut self, other: &HyperLogLogV2)
pub fn merge(&mut self, other: &HyperLogLogV2)
Merge another HLL into this one (must have same precision).
Auto Trait Implementations§
impl Freeze for HyperLogLogV2
impl RefUnwindSafe for HyperLogLogV2
impl Send for HyperLogLogV2
impl Sync for HyperLogLogV2
impl Unpin for HyperLogLogV2
impl UnsafeUnpin for HyperLogLogV2
impl UnwindSafe for HyperLogLogV2
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more