Expand description
Traits implemented by scalar, non-SIMD, types.
Traitsยง
- Closed
Add - Trait alias for
Add
with result of typeSelf
. - Closed
AddAssign - Trait alias for
Add
andAddAssign
with result of typeSelf
. - Closed
Div - Trait alias for
Div
with result of typeSelf
. - Closed
DivAssign - Trait alias for
Div
andDivAssign
with result of typeSelf
. - Closed
Mul - Trait alias for
Mul
with result of typeSelf
. - Closed
MulAssign - Trait alias for
Mul
andMulAssign
with result of typeSelf
. - Closed
Neg - Trait alias for
Neg
with result of typeSelf
. - Closed
Sub - Trait alias for
Sub
with result of typeSelf
. - Closed
SubAssign - Trait alias for
Sub
andSubAssign
with 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
SupersetOf
as trait bound whenever possible instead ofSubsetOf
(because SupersetOf is automatically implemented wheneverSubsetOf
is). - Superset
Of - 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).