-
Notifications
You must be signed in to change notification settings - Fork 12.9k
New issue
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
Make Hash{Set,Map}::with_hasher unstably const #102574
Make Hash{Set,Map}::with_hasher unstably const #102574
Conversation
Hey! It looks like you've submitted a new PR for the library teams! If this PR contains changes to any Examples of
|
r? @thomcc (rust-highfive has picked a reviewer for you, use r? to override) |
04d13ab
to
346a49f
Compare
@rustbot label +T-libs-api -T-libs |
This should be |
Typo Fixed. Thanks. |
CC @rust-lang/wg-const-eval |
Thanks for the ping :). This looks fine as we are not doing any additional stuff to make it work. It is just turning it into a |
@bors r=oli-obk,fee1-dead |
Rollup of 5 pull requests Successful merges: - rust-lang#102574 (Make Hash{Set,Map}::with_hasher unstably const) - rust-lang#102650 (Slightly improve no return for returning function error) - rust-lang#102662 (rustdoc: remove no-op CSS `.code-header { display: block }`) - rust-lang#102670 (follow-up fix about 101866 to print the self type.) - rust-lang#102686 (Don't build the compiler before building rls) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
Makes
HashMap::with_hasher
andHashSet::with_hasher
const
.This allows
Tracking issue: #102575