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
This would enable to use fast conversion to hexadecimal. With the current implementation in @aureooms/js-integer-big-endian we can use base = Math.pow(2,26) | 0. Although v8 does not seem to be able to optimize modulo and division operations at the moment, it could happen eventually?
The text was updated successfully, but these errors were encountered:
This would enable to use fast conversion to hexadecimal. With the current implementation in @aureooms/js-integer-big-endian we can use
base = Math.pow(2,26) | 0
. Although v8 does not seem to be able to optimize modulo and division operations at the moment, it could happen eventually?The text was updated successfully, but these errors were encountered: