operator - method

int operator -(
  1. int other
)

Subtraction operator

Implementation

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