operator < method

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

Implementation

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