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
One of the more common things I've used when using bigints is wanting power + modulo, generally this involves writing my own fast exponentiation function (using exponentation by squaring), it would be nice for Math.pow to support the third argument when used with bigints to enable this.
Most languages I've looked at already support this (e.g. in Python via pow(...), Java by bigInteger.modPow, and so on) so there is a lot of prior art.