mech-math 0.3.4

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 = "sqrt")]
pub mod sqrt;
#[cfg(feature = "cbrt")]
pub mod cbrt;

#[cfg(feature = "sqrt")]
pub use self::sqrt::*;
#[cfg(feature = "cbrt")]
pub use self::cbrt::*;