Peter Liljenberg

Results 43 comments of Peter Liljenberg

@MestreLion `get_property` is just a wrapper for the underlying X request, and thus just implements that interface as-is and any semantics around the property type and what gets returned is...

There is no ready-made function for it, but you can achieve this by implementing a https://github.com/ncalc/ncalc/blob/master/src/NCalc/Domain/LogicalExpressionVisitor.cs that does it. You could take most of https://github.com/ncalc/ncalc/blob/master/src/NCalc/Domain/SerializationVisitor.cs but modify `Visit(Identifier)` to evaluate...

I'd say just do all of the calculations in double, if the latter expressions are in double anyway. (There are of course things to consider with the precision of floating...