subEq method

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

In-place subtracts other to this Polynomial.

Implementation

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