Questions tagged [expressionevaluator]

2 questions
0
votes
1 answer

How to extend the postfix(or prefix) notation to support functions with arbitrary parameters?

I need to implement an expression evaluator with some custom types, it is easy to evaluate expressions with only numbers or variables with the help of postfix (or prefix) notation but how to extend the postfix (or prefix) form to support functions…
0
votes
0 answers

Custom "in array" operator in ExpressionEvaluator

I'm using codingseb / ExpressionEvaluator and I'm trying to create a new operator "in" that returns a boolean value of true if the searched item is in the specified field. It should work like this: ara = Array(1, 8, 15, true, "string", 18, 25,…
Atiris
  • 2,613
  • 2
  • 28
  • 42