sketch_oxide 0.1.6

State-of-the-art DataSketches library (2025) - UltraLogLog, Binary Fuse Filters, DDSketch, and more
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Common utilities, traits, and errors

mod error;
pub mod hash;
mod traits;
mod types;
pub mod validation;

pub use error::{Result, SketchError};
pub use traits::{Mergeable, RangeFilter, Reconcilable, Sketch, WindowedSketch};
pub use types::SetDifference;