operator * method

ValueCell<Duration> operator *(
  1. ValueCell<num> factor
)

Returns a cell which holds the multiplication of this by factor.

Implementation

ValueCell<Duration> operator *(ValueCell<num> factor) =>
    (this, factor).apply((a, f) => a * f);