Closed magx2 closed 1 month ago
Instead of running expensive BigInteger.toString() and then parsing BigDecimal from it, run direclty constructor BigDecimal(BigInteger)
BigInteger.toString()
BigDecimal
BigDecimal(BigInteger)
Instead of running expensive
BigInteger.toString()
and then parsingBigDecimal
from it, run direclty constructorBigDecimal(BigInteger)