sim-lib-numbers-float 0.1.0

SIM workspace package for sim lib numbers float.
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/f32` domain: single-precision floating-point literals and
//! values, their scalar arithmetic, and promotion into `f64`.

mod implementation;
mod literal;
mod ops;

pub use implementation::{F32NumberDomain, F32NumbersLib, number_domain};

#[cfg(test)]
mod tests;