operator + method

Rx<int> operator +(
  1. int other
)

Addition operator.

Implementation

Rx<int> operator +(int other) {
  value = value + other;
  return this;
}