Skip to main content

mech_math/stat_error/
mod.rs

1#[macro_use]
2pub use crate::*;
3#[cfg(feature = "erf")]
4pub mod erf;
5#[cfg(feature = "erfc")]
6pub mod erfc;
7
8#[cfg(feature = "erf")]
9pub use self::erf::*;
10#[cfg(feature = "erfc")]
11pub use self::erfc::*;