operator / method

double operator /(
  1. int other
)

Division operator

Implementation

double operator /(int other) {
  return value / other;
}