operator - method

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

Subtracts other to this Polynomial.

Implementation

Polynomial<T> operator -(Polynomial<T> other) => sub(other);