You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we evaluate numerical expressions while parsing. I guess for some use-cases it is more useful to get access to the expression instead. I'm thinking it would be great if we could give access to both.
One option could be to replace Decimal with something like NumExpr { result: Decimal, source: Option<&str> } at the places where expressions are allowed.
The text was updated successfully, but these errors were encountered:
Currently we evaluate numerical expressions while parsing. I guess for some use-cases it is more useful to get access to the expression instead. I'm thinking it would be great if we could give access to both.
One option could be to replace
Decimal
with something likeNumExpr { result: Decimal, source: Option<&str> }
at the places where expressions are allowed.The text was updated successfully, but these errors were encountered: