sim-lib-numbers-rational 0.1.0

SIM workspace package for sim lib numbers rational.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![forbid(unsafe_code)]
#![deny(missing_docs)]
#![allow(deprecated)]

//! The `numbers/rational` domain: exact rational literals and values built over
//! bigint numerator/denominator pairs, their reduced arithmetic, and promotion
//! edges to and from the integer and `f64` domains.

mod implementation;

pub use implementation::*;