hmath 0.1.8

Big Integers and Rational Numbers
Documentation
mod bigint;
mod consts;
mod err;
mod ratio;
mod ubigint;
mod utils;

pub use ubigint::{UBigInt, funcs::gcd_ubi};
pub use bigint::{BigInt, funcs::gcd_bi};
pub use ratio::{
    Ratio,
    funcs::exp_iter, funcs::ln_iter, funcs::pow_iter, funcs::log_iter,
    funcs::sqrt_iter, funcs::cbrt_iter,
    funcs::sin_iter, funcs::cos_iter, funcs::tan_iter,
    e::e_iter, ln2::ln2_iter, pi::pi_iter,
};
pub use consts::{pi_const, e_const, ln2_const};
pub use err::ConversionError;