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
I might be missing it, but I don't see a version of Wrapping<u32> or other such wrapping conversions for BigInt. Specifically, I would like to be able to convert n: BigInt to (n % 2^N): uN and (n + 2^(N-1)) % 2^N - 2^(N-1): iN, which is what you would get with as conversion, except that BigInt is not a primitive type so it doesn't have an AsPrimitive implementation. Should this be a new trait, or a function?