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
decWord64 will need to use a slightly different algorithm than decWord8/16/32. Rather than checking to see if something is exceeded, we will need to check to see if the accumulator shrinks after being multiplied by 10.
Also, decWord should probably do this as well. No sense succeeding when there's overflow.
The text was updated successfully, but these errors were encountered:
decWord64
will need to use a slightly different algorithm thandecWord8/16/32
. Rather than checking to see if something is exceeded, we will need to check to see if the accumulator shrinks after being multiplied by 10.Also,
decWord
should probably do this as well. No sense succeeding when there's overflow.The text was updated successfully, but these errors were encountered: