operator - method

ArithmeticResultNodeWrapper operator -(
  1. ArithmeticResultNodeWrapper subtractor
)

Implementation

ArithmeticResultNodeWrapper operator -(ArithmeticResultNodeWrapper subtractor) {
  return ArithmeticResultNodeWrapper(
      subtractNode: SubtractNode(
          leftChild: this,
          rightChild: subtractor
      )
  );
}