operator * method

dynamic operator *(
  1. Result other
)

Multiplies two results.

Implementation

operator *(Result other) =>
    Result(clean: approximate() * other.approximate());