Package org.kigalisim.lang.operation
Class SubtractionOperation
java.lang.Object
org.kigalisim.lang.operation.SubtractionOperation
- All Implemented Interfaces:
Operation
Calculation that subtracts one calculation from another.
Calculation that resolves two calculations and then subtracts the right from the left by using a PushDownMachine within the QubecTalk runtime.
-
Constructor Summary
ConstructorsConstructorDescriptionSubtractionOperation(Operation left, Operation right) Create a new SubtractionOperation. -
Method Summary
Modifier and TypeMethodDescriptionvoidexecute(PushDownMachine machine) Execute the calculation and leave the result at the top of the stack.
-
Constructor Details
-
SubtractionOperation
Create a new SubtractionOperation.- Parameters:
left- The left operand of the subtraction.right- The right operand of the subtraction.
-
-
Method Details