mirror of
https://github.com/DanilaFe/abacus
synced 2024-11-16 07:33:09 -08:00
9 lines
153 B
Java
9 lines
153 B
Java
package org.nwapw.abacus.function;
|
|
|
|
/**
|
|
* Enum to represent the associativity of an operator.
|
|
*/
|
|
public enum OperatorAssociativity {
|
|
LEFT, RIGHT
|
|
}
|