operator - method

TValue operator -(
  1. TValue other
)

Subtracts other from this value.

Implementation

TValue operator -(TValue other) => createValue(baseValue - other.baseValue);