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
B=5时 bucket num 由 hash 的低 5 位决定
// 比如 B=5,那 m 就是31,二进制是全 1 // 求 bucket num 时,将 hash 与 m 相与, // 达到 bucket num 由 hash 的低 8 位决定的效果 m := uintptr(1)<<h.B - 1
B为5时 bucket num 由 hash 的低 5 位决定
// 比如 B=5,那 m 就是31,二进制是全 1 // 求 bucket num 时,将 hash 与 m 相与, // 达到 bucket num 由 hash 的低 5 位决定的效果 m := uintptr(1)<<h.B - 1
The text was updated successfully, but these errors were encountered:
No branches or pull requests
实际描述
B=5时 bucket num 由 hash 的低 5 位决定
预期描述
B为5时 bucket num 由 hash 的低 5 位决定
The text was updated successfully, but these errors were encountered: