remainder method

ValueCell<num> remainder(
  1. ValueCell<num> other
)

Implementation

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