1
0
mirror of https://github.com/DanilaFe/abacus synced 2026-01-14 19:05:19 +00:00

Implement the negation operator.

This commit is contained in:
2017-08-02 11:26:59 -07:00
parent 31a4234d9b
commit 046764eeca
3 changed files with 30 additions and 6 deletions

View File

@@ -4,5 +4,5 @@ package org.nwapw.abacus.function;
* The type of an operator, describing how it should behave.
*/
public enum OperatorType {
BINARY_INFIX, UNARY_POSTFIX
BINARY_INFIX, UNARY_POSTFIX, UNARY_PREFIX
}