| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| 0.16.0 source code.tar.gz | 2026-03-06 | 40.3 kB | |
| 0.16.0 source code.zip | 2026-03-06 | 51.7 kB | |
| README.md | 2026-03-06 | 755 Bytes | |
| Totals: 3 Items | 92.8 kB | 0 | |
💥 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