1
0
mirror of https://github.com/DanilaFe/abacus synced 2024-07-04 08:01:30 -07:00
Abacus/src/main/java/org/nwapw/abacus/function/OperatorType.java

9 lines
166 B
Java
Raw Normal View History

2017-07-28 10:26:25 -07:00
package org.nwapw.abacus.function;
/**
* The type of an operator, describing how it should behave.
*/
public enum OperatorType {
BINARY_INFIX, UNARY_POSTFIX
}