subms-hyperloglog 0.5.0

submillisecond.com cookbook recipe - data-structures: subms-hyperloglog. Distinct-count cardinality estimator. ~1% standard error at ~16 KB.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Opt-in HyperLogLog feature modules. Each entry is gated by its own
//! Cargo feature; the base `HyperLogLog` in `lib.rs` stays zero-dep.
//!
//! Composable: `sparse` SparseHyperLogLog promotes to a base
//! `HyperLogLog` once it crosses the dense-encoding threshold;
//! `union-intersect` works on any pair of base HLLs.

#[cfg(feature = "sparse")]
pub mod sparse;
#[cfg(feature = "union-intersect")]
pub mod union_intersect;