arpfloat 0.1.11

Arbitrary-precision floating point library
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Contains the implementations of various mathematical functions and
//! constants.

#[cfg(feature = "std")]
extern crate std;

mod constants;
mod exp;
mod frac;
mod functions;
mod trig;