You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GenericDecimal try_from/try_into implementations for BigInt/BigUint ("with-bigint" feature)
Tests for all GenericDecimal ops (overloadable operators - std::ops)
Changed
GenericDecimal ops (overloadable operators) refactoring. Each operator is now implemented separately in its own module, allowing decoupled code with its own optimisations and tests.
Fixed
PartialOrd will now reuse Ord implementation where possible (refactor to make clippy happier)
Fixed logic in sub_assign and checked_sub that could sometimes produce incorrect results for a couple of edge cases with a negative zero (-0) as an operand.