1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
//! Helper types and functions used within the metrics ecosystem.
#![deny(missing_docs)]
mod bucket;
pub use bucket::AtomicBucket;

mod streaming;
pub use streaming::StreamingIntegers;

mod quantile;
pub use quantile::{parse_quantiles, Quantile};

mod tree;
pub use tree::{Integer, MetricsTree};