operator + method

RxInt operator +(
  1. int other
)

Addition operator.

Implementation

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