rust_number 0.1.1

Rust port of number-precision for safer floating-point arithmetic
Documentation
1
2
3
4
5
6
use rust_number::plus;

fn main() {
    let result = plus(0.321412342, 0.231894223490);
    println!("{}", result);
}