addEq method

Polynomial<T> addEq(
  1. Polynomial<T> other
)

In-place adds other to this Polynomial.

Implementation

Polynomial<T> addEq(Polynomial<T> other) {
  binaryOperator<T>(this, this, other, dataType.field.add);
  return this;
}