stackoverflow-examples
stackoverflow-examples copied to clipboard
DecimalBigInt Division
This is a feature request if you can add a support for DecimalBigInt Division, also a power method
I guess I could do this (or someone else), but why?
This class is not production-quality code, it was just made as an example how that could be done, for my Stack Overflow answer.
If you need a big integer class, have a look at java.math.BigInteger instead of using this. It might have slightly more ugly method names, but is certainly implemented more efficiently. (And it has division and power.)
I use BigInteger for these cases, but I found this class is a good alternative, so thought of having these 2 basic feature addition.