1
2
3
4
5
6
7
//! A module for computing summary statistics of data.

mod moments;
mod order;

pub use self::moments::*;
pub use self::order::*;