A division of two LongExpressions result in a LongExpression. Often it is needed to instead get a DoubleExpression. Unfortunately, there is no "clean" way in the Bindings API for that, hence coders are forced to do pseudo-conversions like longExp1.divide(1d).divide(longExp2), which implies time-consuming actions.
Hence, I want to propose the addition of "LongExpression.toDoubleExpression()" / "Binding.toDoubleExpression(LongExpression)" methods, which do the type conversion in less time-consuming steps.
Hence, I want to propose the addition of "LongExpression.toDoubleExpression()" / "Binding.toDoubleExpression(LongExpression)" methods, which do the type conversion in less time-consuming steps.