operator * method

Polynomial<T> operator *(
  1. Object other
)

Multiplies this Polynomial with other.

Implementation

Polynomial<T> operator *(/* Polynomial<T>|T */ Object other) => mul(other);