operator * method

int operator *(
  1. int other
)

Multiplication operator

Implementation

int operator *(int other) {
  return value * other;
}