mpmfnum 0.2.0

A numbers library in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Multiple flavors of fixed-point numbers.
//!
//! This module implements fixed-point numbers with [`FixedContext`].
//! The associated storage type is [`Fixed`].

mod number;
mod ops;
mod round;

pub use number::{Exceptions, Fixed};
pub use round::{FixedContext, Overflow};