simba/scalar/
mod.rs

1//! Traits implemented by scalar, non-SIMD, types.
2
3pub use self::complex::ComplexField;
4pub use self::field::{ClosedAdd, ClosedDiv, ClosedMul, ClosedNeg, ClosedSub, Field};
5#[cfg(feature = "partial_fixed_point_support")]
6pub use self::fixed_impl::*;
7pub use self::real::RealField;
8pub use self::subset::{SubsetOf, SupersetOf};
9
10mod real;
11#[macro_use]
12mod complex;
13mod field;
14#[cfg(feature = "partial_fixed_point_support")]
15mod fixed_impl;
16mod subset;