operator + method

GetRxDecoratorDouble operator +(
  1. double add
)

Addition operator.

Implementation

GetRxDecoratorDouble operator +(double add) {
  call(_src.value + add);
  return this;
}