DivPolynomialExtension<T> extension
- on
-
- Polynomial<
T>
- Polynomial<
Methods
-
div(
Polynomial< T> other, {DataType<T> ? dataType, PolynomialFormat? format}) → PolynomialDivision<T> -
Available on Polynomial<
Divides this Polynomial byT> , provided by the DivPolynomialExtension extensionother
, returns the quotient and remainder such thatdividend = quotient * divisor + remainder
.
Operators
-
operator %(
Polynomial< T> other) → Polynomial<T> -
Available on Polynomial<
Divides this Polynomial byT> , provided by the DivPolynomialExtension extensionother
, returns the remainder. -
operator /(
Polynomial< T> other) → PolynomialDivision<T> -
Available on Polynomial<
Divides this Polynomial byT> , provided by the DivPolynomialExtension extensionother
, returns the quotient and remainder such thatdividend = quotient * divisor + remainder
. -
operator ~/(
Polynomial< T> other) → Polynomial<T> -
Available on Polynomial<
Divides this Polynomial byT> , provided by the DivPolynomialExtension extensionother
, returns the quotient.