1
2
3
4
5
6
//! Data reduction.

pub mod average;
pub mod histogram;

pub use self::{average::*, histogram::*};