operator * method

ValueCell<num> operator *(
  1. ValueCell<num> other
)

Implementation

ValueCell<num> operator * (ValueCell<num> other) =>
    (this, other).apply((a, b) => a * b);