operator < method

bool operator <(
  1. ConstCell<int> other
)

Implementation

bool operator <(ConstCell<int> other) {
  return _val < other._val;
}