sim_lib_numbers_float/lib.rs
1#![forbid(unsafe_code)]
2#![deny(missing_docs)]
3#![allow(deprecated)]
4
5//! The `numbers/f32` domain: single-precision floating-point literals and
6//! values, their scalar arithmetic, and promotion into `f64`.
7
8mod implementation;
9mod literal;
10mod ops;
11
12pub use implementation::{F32NumberDomain, F32NumbersLib, number_domain};
13
14#[cfg(test)]
15mod tests;