operator + method

T operator +(
  1. T other
)

Returns a measurement equivalent to the sum of two others.

Implementation

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