1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! # Modeling mathematical constructs and their associated operations.

#![feature(extract_if)]
#![feature(type_ascription)]

extern crate log;

pub mod histogram;
pub mod interval;
pub mod iter;
pub mod partition;
pub mod sample;
pub mod search;
pub mod set;
pub mod stats;
pub mod tensor;
pub mod traits;