operator * method

TValue operator *(
  1. Rational factor
)

Multiplies this value by factor.

Implementation

TValue operator *(Rational factor) => createValue(baseValue * factor);