sim_lib_numbers_rational/lib.rs
1#![forbid(unsafe_code)]
2#![deny(missing_docs)]
3#![allow(deprecated)]
4
5//! The `numbers/rational` domain: exact rational literals and values built over
6//! bigint numerator/denominator pairs, their reduced arithmetic, and promotion
7//! edges to and from the integer and `f64` domains.
8
9mod implementation;
10
11pub use implementation::*;