Expand description
Trait definitions for operations related to rings (integer/polynomial/etc.)
Traits§
- Cubic
Root Rem - Computer the floored cubic root of the number and return the remainder at the same time.
- DivEuclid
- Compute Euclidean quotient.
- DivRem
- Compute quotient and remainder at the same time.
- DivRem
Assign - Compute quotient inplace and return remainder at the same time.
- DivRem
Euclid - Compute Euclidean quotient and remainder at the same time.
- Extended
Gcd - Compute the greatest common divisor between self and the other operand, and return
both the common divisor
gand the Bézout coefficients respectively. - Gcd
- Compute the greatest common divisor.
- RemEuclid
- Compute Euclidean remainder.
- Square
Root Rem - Computer the floored square root of the number and return the remainder at the same time.