operator ~/ method

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

Divides this Polynomial by other, returns the quotient.

Implementation

Polynomial<T> operator ~/(Polynomial<T> other) => div(other).quotient;