💥 Breaking changes
BigInteger::getLowestSetBit()now returnsnullinstead of-1when the number is zero- Deprecated method
BigRational::simplified()has been removed, as it is now a no-op
✨ New features
- New method:
BigDecimal::getIntegralPart()returns the integral part asBigInteger(this method existed with a different signature in version 0.14, and was removed in 0.15) - New method:
BigDecimal::getFractionalPart()returns the fractional part asBigDecimal(this method existed with a different signature and meaning in version 0.14, and was removed in 0.15)
🗑️ Deprecations
- Method
BigDecimal::hasNonZeroFractionalPart()is deprecated, use->getFractionalPart()->isZero()instead