1 2 3 4 5 6 7 8 9 10 11
//! Various mathematical and statistical functions. mod combinatorial; mod gamma; mod interpolate; mod statistical; pub use self::combinatorial::*; pub use self::gamma::*; pub use self::interpolate::*; pub use self::statistical::*;