mech-math 0.3.3

Math library for the Mech language
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[macro_use]
pub use crate::*;
#[cfg(feature = "lgamma")]
pub mod lgamma;
#[cfg(feature = "tgamma")]
pub mod tgamma;

#[cfg(feature = "lgamma")]
pub use self::lgamma::*;
#[cfg(feature = "tgamma")]
pub use self::tgamma::*;