operator + method

Cell<int> operator +(
  1. ConstCell<int> other
)

Implementation

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