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