operator > method

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

Implementation

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