···1EvalEx - Java Expression Evaluator
2==========
34-This is a personal fork of EvalEx with lots of incompatible changes.
56Please check out the original repo here on [GitHub](https://github.com/ezylang/EvalEx).
78Changes over upstream:
910- Inlining of simple and constant expressions.
00000011- Immutable contexts and expressions.
12- Replaced expression-wide variables with `evaluate` only parameters.
13- `Object[]` in various places to allow passing arbitrary objects to data accessors and custom functions.
14- Constant are no longer copied to each expression.
15- Data accessors can now throw EvaluationExceptions.
016- Removed dictionary interfaces.
17- Switched from maven to gradle.
01819## Author and License
20
···1EvalEx - Java Expression Evaluator
2==========
34+This is a personal fork of EvalEx with lots of incompatible and unstable changes.
56Please check out the original repo here on [GitHub](https://github.com/ezylang/EvalEx).
78Changes over upstream:
910- Inlining of simple and constant expressions.
11+- Lazy array and list conversions.
12+- String multiplication and number conversion.
13+```
14+"Hello" * 3 => "HelloHelloHello"
15+```
16+- `DataAccessorIfc` data type.
17- Immutable contexts and expressions.
18- Replaced expression-wide variables with `evaluate` only parameters.
19- `Object[]` in various places to allow passing arbitrary objects to data accessors and custom functions.
20- Constant are no longer copied to each expression.
21- Data accessors can now throw EvaluationExceptions.
22+- Custom identifier characters.
23- Removed dictionary interfaces.
24- Switched from maven to gradle.
25+- And more...
2627## Author and License
28