mpmfnum 0.2.0

A numbers library in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Floating-point numbers as described in the IEEE 754-2019 standard.
//!
//! This module implements floating-point numbers with [`IEEE754Context`].
//! The associated storage type is [`IEEE754`] which represents an
//! IEEE 754 style floating-point number.

mod number;
pub mod ops;
mod round;

pub(crate) use number::IEEE754Val;
pub use number::{Exceptions, IEEE754};
pub use round::IEEE754Context;