bignumber 0.0.7

A Rust library for arbitrary-precision decimal and non-decimal arithmetic
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![doc = include_str!("../README.md")]
mod add;
mod bignumber;
mod convert;
mod div;
mod errors;
mod ethereum_types;
mod exp;
mod fmt;
mod macros;
mod mul;
mod sub;

pub type BigNumber = bignumber::BigNumber;