operator unary- method

Cell<int> operator unary-()

Implementation

Cell<int> operator -() {
  return Cell<int>(-_val);
}