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
Is bb |= bb >> 256 required? Doesn't it just equate to bb |= 0?
bb |= bb >> 256
bb |= 0
Or am I being dumb...
The text was updated successfully, but these errors were encountered:
@sillytuna I think you are right!
Sorry, something went wrong.
Unrelated but I'm going to look at shifting the two classes to yul and checking gas use differences.
No branches or pull requests
Is
bb |= bb >> 256
required?Doesn't it just equate to
bb |= 0
?Or am I being dumb...
The text was updated successfully, but these errors were encountered: