operator + method

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

Adds other to this Polynomial.

Implementation

Polynomial<T> operator +(Polynomial<T> other) => add(other);