operator unary- method

Cell<double> operator unary-()

Implementation

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