zenith-float-num 1.0.0

Software big-float kernel for zenith-float.
Documentation
//! High-level operations on the numbers.

mod acos;
mod acosh;
mod airy;
mod asin;
mod asinh;
mod atan;
mod atan2;
mod atanh;
mod cbrt;
pub mod consts;
mod cos;
mod cosh;
mod expm1;
mod fma;
mod hypot;
mod ieee;
mod log;
mod log1p;
mod nroot;
mod pow;
mod recip;
mod series;
mod sign;
mod sin;
mod sin_cos;
mod sinh;
mod sinh_cosh;
pub(crate) mod special;
mod sqrt;
mod tan;
mod tanh;
mod util;

#[cfg(test)]
mod tests;