Expand description
Traits implemented by scalar, non-SIMD, types.
Traitsยง
- Closed
Add - Trait alias for
Addwith result of typeSelf. - Closed
AddAssign - Trait alias for
AddandAddAssignwith result of typeSelf. - Closed
Div - Trait alias for
Divwith result of typeSelf. - Closed
DivAssign - Trait alias for
DivandDivAssignwith result of typeSelf. - Closed
Mul - Trait alias for
Mulwith result of typeSelf. - Closed
MulAssign - Trait alias for
MulandMulAssignwith result of typeSelf. - Closed
Neg - Trait alias for
Negwith result of typeSelf. - Closed
Sub - Trait alias for
Subwith result of typeSelf. - Closed
SubAssign - Trait alias for
SubandSubAssignwith result of typeSelf. - Complex
Field - Trait shared by all complex fields and its subfields (like real numbers).
- Field
- Trait implemented by fields, i.e., complex numbers and floats.
- Real
Field - Trait shared by all reals.
- Subset
Of - 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). - Superset
Of - 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).