-
Enhancement
-
Resolution: Unresolved
-
P4
-
None
-
None
-
generic
-
generic
ADDITIONAL SYSTEM INFORMATION :
Java 22.0.1 on Kali Linux 2020
A DESCRIPTION OF THE PROBLEM :
The implementation provided for MutableBigInteger.leftShift(int) in the pull request optimizes the current version, avoiding unnecessary copy of the MutableBigInteger's value content and performing the primitive shifting only in the original portion of the value array rather than in the value yet extended with trailing zeros. This makes the implementation much faster.
Java 22.0.1 on Kali Linux 2020
A DESCRIPTION OF THE PROBLEM :
The implementation provided for MutableBigInteger.leftShift(int) in the pull request optimizes the current version, avoiding unnecessary copy of the MutableBigInteger's value content and performing the primitive shifting only in the original portion of the value array rather than in the value yet extended with trailing zeros. This makes the implementation much faster.