mulScalarEq method

Polynomial<T> mulScalarEq(
  1. T other
)

In-place multiplies this Polynomial with a scalar.

Implementation

Polynomial<T> mulScalarEq(T other) {
  final mul = dataType.field.mul;
  unaryOperator<T>(this, this, (a) => mul(a, other));
  return this;
}