Expand description
Traits implemented by scalar, non-SIMD, types.
Traits
- Trait alias for
AddandAddAssignwith result of typeSelf. - Trait alias for
DivandDivAssignwith result of typeSelf. - Trait alias for
MulandMulAssignwith result of typeSelf. - Trait alias for
Negwith result of typeSelf. - Trait alias for
SubandSubAssignwith result of typeSelf. - Trait shared by all complex fields and its subfields (like real numbers).
- Trait implemented by fields, i.e., complex numbers and floats.
- Trait shared by all reals.
- Nested sets and conversions between them (using an injective mapping). Useful to work with substructures. In generic code, it is preferable to use
SupersetOfas trait bound whenever possible instead ofSubsetOf(because SupersetOf is automatically implemented wheneverSubsetOfis). - Nested sets and conversions between them. Useful to work with substructures. It is preferable to implement the
SubsetOftrait instead ofSupersetOfwhenever possible (becauseSupersetOfis automatically implemented wheneverSubsetOfis).