1
0
mirror of https://github.com/DanilaFe/abacus synced 2024-06-15 23:47:07 -07:00
Abacus/src/org/nwapw/abacus/function/OperatorAssociativity.java

9 lines
153 B
Java

package org.nwapw.abacus.function;
/**
* Enum to represent the associativity of an operator.
*/
public enum OperatorAssociativity {
LEFT, RIGHT
}