We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Why not to build u256 on top of u128? Implementation will be the same as u128 on top of u64. Implementation can even be templated by subtype.
u256
u128
u64
The text was updated successfully, but these errors were encountered:
I wasn't done for performance reasons. as-bignum exclusively focused on perf. Building over u128 will cause to significant overhead
Sorry, something went wrong.
@MaxGraey agree, but I would prefer to have working implementation first and optimized shipped with update.
No branches or pull requests
Why not to build
u256
on top ofu128
? Implementation will be the same asu128
on top ofu64
. Implementation can even be templated by subtype.The text was updated successfully, but these errors were encountered: