com.evuv.operators.Operator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of evuv-exp-parser Show documentation
Show all versions of evuv-exp-parser Show documentation
Boolean expression parser and evaluator
The newest version!
package com.evuv.operators;
import com.evuv.expressions.BindedExpression;
public interface Operator, U> {
public boolean op(T left, T right);
}