Ideas for version 3.0 #280
Replies: 4 comments 5 replies
-
Got a smallish one: Instead of the public enum Feature {
STRIP_TRAILING_ZEROS;
}
public BigDecimal eval(Feature... features) { ... }
public BigDecimal eval(EnumSet<Feature> features) { ... } Would make it clearer what the overload is for and it would be easily extendable. |
Beta Was this translation helpful? Give feedback.
-
@qwert2003 At the moment, a custom function or operator can only be added to an expression instance. |
Beta Was this translation helpful? Give feedback.
-
I'd like to clean up the tokenization code, possibly altering the EvalEx grammar in the process to make it more Java-like. My memory's a little hazy, but one example that comes to mind is how EvalEx identifies number literals -- changing the grammar would make this code simpler, and its results would be more predictable to a Java programmer. |
Beta Was this translation helpful? Give feedback.
-
I would also like to support structures, in addition to arrays. Something like |
Beta Was this translation helpful? Give feedback.
-
Hi all,
I am starting to plan developing the next major release of EvalEx, namely version 3.0.
For this, I would like to gather some ideas for new features and improvements that could go into that version.
Here are some notes from my mind, to start the collection:
Beta Was this translation helpful? Give feedback.
All reactions