mul method

void mul(
  1. double val
)

multiply

Implementation

void mul(double val) {
  _val = _val * val;
}