astro-float-num 0.3.6

Multiple precision floating point numbers implemented purely in Rust.
Documentation
//! High-level operations on the numbers.

mod acos;
mod acosh;
mod asin;
mod asinh;
mod atan;
mod atanh;
mod cbrt;
pub mod consts;
mod cos;
mod cosh;
mod log;
mod pow;
mod series;
mod sin;
mod sinh;
mod sqrt;
mod tan;
mod tanh;
mod util;

#[cfg(test)]
mod tests;