div method

void div(
  1. double val
)

divide

Implementation

void div(double val) {
  _val = _val / val;
}