1
0
mirror of https://github.com/DanilaFe/abacus synced 2024-06-25 12:16:23 -07:00
Abacus/core/src/main/java/org/nwapw/abacus/function/OperatorType.java

9 lines
180 B
Java

package org.nwapw.abacus.function;
/**
* The type of an operator, describing how it should behave.
*/
public enum OperatorType {
BINARY_INFIX, UNARY_POSTFIX, UNARY_PREFIX
}