//! Online univariate statistics with bounded memory.
//!
//! Every non-rolling statistic in this module uses `O(1)` memory.
//! Rolling statistics use `O(window_size)` memory.
pub use Count;
pub use ExponentiallyWeightedMean;
pub use ;
pub use Mean;
pub use ;
pub use Sum;
pub use ;