subtract method

double subtract(
  1. double other
)

Implementation

double subtract(double other) {
  return this - other;
}