1
0
mirror of https://github.com/DanilaFe/abacus synced 2024-07-02 07:21:24 -07:00
Abacus/core/src/main/java/org/nwapw/abacus/function/OperatorType.java

9 lines
180 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 {
2017-08-02 11:26:59 -07:00
BINARY_INFIX, UNARY_POSTFIX, UNARY_PREFIX
2017-07-28 10:26:25 -07:00
}