DivPolynomialExtension<T> extension

on

Methods

div(Polynomial<T> other, {DataType<T>? dataType, PolynomialFormat? format}) PolynomialDivision<T>
Divides this Polynomial by other, returns the quotient and remainder such that dividend = quotient * divisor + remainder.

Operators

operator %(Polynomial<T> other) Polynomial<T>
Divides this Polynomial by other, returns the remainder.
operator /(Polynomial<T> other) PolynomialDivision<T>
Divides this Polynomial by other, returns the quotient and remainder such that dividend = quotient * divisor + remainder.
operator ~/(Polynomial<T> other) Polynomial<T>
Divides this Polynomial by other, returns the quotient.