negEq method

Polynomial<T> negEq()

In-place negates this Polynomial.

Implementation

Polynomial<T> negEq() {
  unaryOperator<T>(this, this, dataType.field.neg);
  return this;
}