operator - method

Valuable<num> operator -(
  1. Valuable<num> other
)

Subtraction operator.

Implementation

Valuable<num> operator -(Valuable<num> other) =>
    ValuableNumOperation.substract(this, other);