operator / method

Valuable<double> operator /(
  1. Valuable<num> other
)

Division operator.

Implementation

Valuable<double> operator /(Valuable<num> other) =>
    ValuableNumOperation.divide(this, other);