Expand description
Traits implemented by scalar, non-SIMD, types.
Traits§
- Trait alias for
Add
andAddAssign
with result of typeSelf
. - Trait alias for
Div
andDivAssign
with result of typeSelf
. - Trait alias for
Mul
andMulAssign
with result of typeSelf
. - Trait alias for
Neg
with result of typeSelf
. - Trait alias for
Sub
andSubAssign
with 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
SupersetOf
as trait bound whenever possible instead ofSubsetOf
(because SupersetOf is automatically implemented wheneverSubsetOf
is). - Nested sets and conversions between them. Useful to work with substructures. It is preferable to implement the
SubsetOf
trait instead ofSupersetOf
whenever possible (becauseSupersetOf
is automatically implemented wheneverSubsetOf
is).