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

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

//! The `numbers/complex` domain: complex literals and values, their arithmetic,
//! and the promotion edges from `i64`, `f64`, and `rational` into the complex
//! sink of the scalar lattice.

mod implementation;

pub use implementation::*;

#[cfg(test)]
mod tests;