operator - method

GetRxDecoratorDouble operator -(
  1. double sub
)

Subtraction operator.

Implementation

GetRxDecoratorDouble operator -(double sub) {
  call(_src.value - sub);
  return this;
}