operator - method

double operator -(
  1. num other
)

Subtraction operator

Implementation

double operator -(num other) {
  return value - other;
}