sketch_oxide 0.1.6

State-of-the-art DataSketches library (2025) - UltraLogLog, Binary Fuse Filters, DDSketch, and more
Documentation
//! Frequency estimation algorithms

mod conservative_count_min;
mod count_min;
mod count_sketch;
pub mod elastic_sketch;
pub mod frequent;
mod heavy_keeper;
mod nitrosketch;
pub mod removable_sketch;
pub mod salsa;
mod space_saving;

pub use conservative_count_min::ConservativeCountMin;
pub use count_min::CountMinSketch;
pub use count_sketch::CountSketch;
pub use elastic_sketch::ElasticSketch;
pub use frequent::{ErrorType, FrequentItems};
pub use heavy_keeper::HeavyKeeper;
pub use nitrosketch::{NitroSketch, NitroSketchStats};
pub use removable_sketch::RemovableUniversalSketch;
pub use salsa::SALSA;
pub use space_saving::SpaceSaving;