Skip to content

Commit

Permalink
Support for Filter method .contains()
Browse files Browse the repository at this point in the history
  • Loading branch information
hopecee committed Jan 13, 2018
1 parent 8d93f4a commit d7a59ac
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,8 @@ else if (precedence == op.precedence)
public static final MonadicOperator OP_COM = new MonadicOperator("~", 6);
/** DISTINCT **/
public static final MonadicOperator OP_DISTINCT = new MonadicOperator("DISTINCT", 6);
/** CONTAINS **/
public static final DyadicOperator OP_CONTAINS = new DyadicOperator("=~", 3, false);

/**
* Constructor.
Expand Down Expand Up @@ -344,4 +346,4 @@ public Object evaluate(ExpressionEvaluator eval)
* @return The symbol for this expression
*/
public abstract Symbol bind(SymbolTable symtbl);
}
}

0 comments on commit d7a59ac

Please sign in to comment.