operator - method

RxInt operator -(
  1. int other
)

Subtraction operator.

Implementation

RxInt operator -(int other) {
  value = value - other;
  return this;
}