mpmfnum 0.2.0

A numbers library in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Floating-point numbers with unbounded significand and exponent.
//!
//! This module implements floating-point numbers with [`RFloatContext`].
//! The associated storage type is [`RFloat`] ("Real Float") which
//! represent binary floating-point numbers with unbounded significand
//! and unbounded exponent.
//!
//! The [`RFloat`] type serves as an interchange format between
//! binary numbers since it is the least restrictive.
//!

mod number;
mod round;

pub use number::RFloat;
pub use round::RFloatContext;