2017-07-27 09:33:01 -07:00
|
|
|
package org.nwapw.abacus.function;
|
2017-07-25 11:08:03 -07:00
|
|
|
|
2017-07-26 10:10:37 -07:00
|
|
|
/**
|
|
|
|
* Enum to represent the associativity of an operator.
|
|
|
|
*/
|
2017-07-25 11:08:03 -07:00
|
|
|
public enum OperatorAssociativity {
|
|
|
|
LEFT, RIGHT
|
|
|
|
}
|