//! Core types shared across the nexus-stats ecosystem.
//!
//! This crate provides the fundamental streaming statistics types used by
//! `nexus-stats` and all its subcrates. Not intended for direct use —
//! import from `nexus-stats` instead.
//!
//! Includes: error types, math utilities, core smoothing (EMA, AsymEma, Slew),
//! statistics (Welford, Moments, EwmaVar, Covariance, HarmonicMean, Percentile),
//! monitoring, core detection (CUSUM), and core control types.
extern crate alloc;
pub use ;
/// Control, thresholding, and differencing.
/// Change detection.
/// Monitoring and health tracking.
/// Smoothing and filtering primitives.
/// Core streaming statistics.