1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
#[macro_use]
extern crate trackable;

pub use self::error::{Error, ErrorKind};

pub mod distributions;
pub mod fundamental;
pub mod hypothesis_testings;
pub mod matrix;
pub mod num;
pub mod plot;
pub mod range;
pub mod samplers;

mod error;

pub type Result<T> = std::result::Result<T, Error>;