operator + method

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

Implementation

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