sim_lib_numbers_complex/lib.rs
1#![forbid(unsafe_code)]
2#![deny(missing_docs)]
3#![allow(deprecated)]
4
5//! The `numbers/complex` domain: complex literals and values, their arithmetic,
6//! and the promotion edges from `i64`, `f64`, and `rational` into the complex
7//! sink of the scalar lattice.
8
9mod implementation;
10
11pub use implementation::*;
12
13#[cfg(test)]
14mod tests;