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
Copy file name to clipboardExpand all lines: docs/changelog.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ DeciMojo v0.5.0 introduces significant enhancements to the `BigDecimal` and `Big
17
17
1. Implement in-place subtraction for `BigUInt`. The `__isub__` method of `BigUInt` will now conduct in-place subtraction. `x -= y` will not lead to memory allocation, but will modify the original `BigUInt` object `x` directly (#98).
18
18
1. Refine the arithmetic operations of `BigUInt` when the second operand is one-word long or is a `UInt32` value (#98).
19
19
1. Refine the division of `BigUInt` to improve performance (#98, #100).
20
-
1. Use SIMD for `BigUInt` addition. This allows the addition of two `BigUInt` objects to be performed in parallel, significantly improving performance for large numbers (#101).
20
+
1. Use SIMD for `BigUInt` addition and subtraction operations. This allows the addition and subtraction of two `BigUInt` objects to be performed in parallel, significantly improving performance for large numbers (#101, #102).
21
21
1. Add `to_uint64()` and `to_uint128()` methods to `BigUInt` to for fast type conversion (#91).
22
22
1. Improve error messages and remove unnecessary `raises` keywords for all functions (#92).
0 commit comments