operator ~/ method

Cell<int> operator ~/(
  1. ConstCell<int> other
)

Performs integer division of this object.

Implementation

Cell<int> operator ~/(ConstCell<int> other) {
  return Cell<int>(_val ~/ other._val);
}