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