sim-lib-numbers-fixed 0.1.0-rc.1

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

//! The fixed-width integer domains (`numbers/i8` .. `numbers/i128`,
//! `numbers/u8` .. `numbers/u128`): their literals, values, and the widening
//! promotion edges through the signed and unsigned integer lattice.

mod implementation;
mod literal;

pub use implementation::FixedNumbersLib;

#[cfg(test)]
mod tests;