bignumber 0.0.3

A Rust library for arbitrary-precision decimal and non-decimal arithmetic
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod bignumber;
mod convert;
mod errors;
mod fmt;
mod sub;
mod add;
mod mul;
mod div;
mod exp;
mod macros;

pub type BigNumber = bignumber::BigNumber;