1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
//! Provides a layer of abstraction over certain mathematical constructs
//! through trait definitions and concrete implementations.

#![feature(drain_filter)]

pub mod histogram;
pub mod interval;
pub mod partition;
pub mod sample;
pub mod search;
pub mod set;
pub mod traits;