analytic 0.3.7

A math library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! 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 iter;
pub mod partition;
pub mod sample;
pub mod search;
pub mod set;
pub mod stats;
pub mod traits;