operator - method

T operator -(
  1. T other
)

Returns a measurement equivalent to the difference between two others.

Implementation

T operator -(final T other) => _construct(
    si - other.si, Precision.addition(this, -other), defaultInterpreter);