Package org.kigalisim.lang.operation
Class LogicalOperation
java.lang.Object
org.kigalisim.lang.operation.LogicalOperation
- All Implemented Interfaces:
Operation
Calculation that performs a logical operation on two other calculations.
Calculation that resolves two calculations and then performs a logical operation (AND, OR, XOR) on the results by using a PushDownMachine within the QubecTalk runtime.
-
Constructor Summary
ConstructorsConstructorDescriptionLogicalOperation(Operation left, Operation right, String operator) Create a new LogicalOperation. -
Method Summary
Modifier and TypeMethodDescriptionvoidexecute(PushDownMachine machine) Execute the calculation and leave the result at the top of the stack.
-
Constructor Details
-
LogicalOperation
Create a new LogicalOperation.- Parameters:
left- The left operand of the logical operation.right- The right operand of the logical operation.operator- The logical operator (and, or, xor).
-
-
Method Details