1
 2
 3
 4
 5
 6
 7
 8
 9
10
//! Provides a host of special statistical functions (e.g. the beta function or the error function)

pub mod beta;
pub mod erf;
pub mod evaluate;
pub mod factorial;
pub mod gamma;
pub mod stable;

mod internal;