operator + method

ValueCell<Duration> operator +(
  1. ValueCell<Duration> other
)

Returns a cell which holds the sum of this and other.

Implementation

ValueCell<Duration> operator +(ValueCell<Duration> other) =>
    (this, other).apply((a, b) => a + b);