1
 2
 3
 4
 5
 6
 7
 8
 9
10
//! Statistics toolbox.

#[cfg(test)]
extern crate assert;

mod moment;
mod real;

pub use moment::{mean, variance};
pub use real::{Real, ToReal};