operator / method

PolynomialDivision<T> operator /(
  1. Polynomial<T> other
)

Divides this Polynomial by other, returns the quotient and remainder such that dividend = quotient * divisor + remainder.

Implementation

PolynomialDivision<T> operator /(Polynomial<T> other) => div(other);