sim-lib-numbers-bool 0.1.0

SIM workspace package for sim lib numbers bool.
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 `numbers/bool` domain: boolean literals and values as the base of the
//! number-promotion lattice, with edges widening into the integer and float
//! domains.

mod implementation;
mod literal;

pub use implementation::{BoolNumberDomain, BoolNumbersLib, number_domain};

#[cfg(test)]
mod tests;