operator - method

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

Returns a cell which holds the subtraction of other from this.

Implementation

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