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
to_be_bits
to_le_bits
I tried computing 2^64 with: pub global POW64: Field = 2.pow_32(64); and as pub global POW64: Field = (U128::one() << 64).to_integer();
pub global POW64: Field = 2.pow_32(64);
pub global POW64: Field = (U128::one() << 64).to_integer();
and both fail as the to_be_bits and to_le_bits currently don't have comptime support.
comptime
...
None
No response
The text was updated successfully, but these errors were encountered:
aakoshh
Successfully merging a pull request may close this issue.
Problem
I tried computing 2^64 with:
pub global POW64: Field = 2.pow_32(64);
and aspub global POW64: Field = (U128::one() << 64).to_integer();
and both fail as the
to_be_bits
andto_le_bits
currently don't havecomptime
support.Happy Case
...
Workaround
None
Workaround Description
No response
Additional Context
No response
Project Impact
None
Blocker Context
No response
Would you like to submit a PR for this Issue?
None
Support Needs
No response
The text was updated successfully, but these errors were encountered: