mirror of
https://github.com/DanilaFe/abacus
synced 2026-01-27 00:55:19 +00: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
|
|
}
|