sim_lib_numbers_fixed/lib.rs
1#![forbid(unsafe_code)]
2#![deny(missing_docs)]
3#![allow(deprecated)]
4
5//! The fixed-width integer domains (`numbers/i8` .. `numbers/i128`,
6//! `numbers/u8` .. `numbers/u128`): their literals, values, and the widening
7//! promotion edges through the signed and unsigned integer lattice.
8
9mod implementation;
10mod literal;
11
12pub use implementation::FixedNumbersLib;
13
14#[cfg(test)]
15mod tests;