operator % method

Polynomial<T> operator %(
  1. Polynomial<T> other
)

Divides this Polynomial by other, returns the remainder.

Implementation

Polynomial<T> operator %(Polynomial<T> other) => div(other).remainder;