add method

void add(
  1. double val
)

Add

Implementation

void add(double val) {
  _val = _val + val;
}