-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
Stabilize assoc_char_funcs
and assoc_char_consts
#82919
Conversation
r? @sfackler (rust-highfive has picked a reviewer for you, use r? to override) |
@rfcbot merge |
Team member @joshtriplett has proposed to merge this. The next step is review by the rest of the tagged team members: No concerns currently listed. Once a majority of reviewers approve (and at most 2 approvals are outstanding), this will enter its final comment period. If you spot a major issue that hasn't been raised at any point in this process, please speak up! See this document for info about what commands tagged team members can give me. |
🔔 This is now entering its final comment period, as per the review above. 🔔 |
☔ The latest upstream changes (presumably #83301) made this pull request unmergeable. Please resolve the merge conflicts. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good. These all exactly match the corresponding already-stable APIs in the core::char
and std::char
modules.
Rebased to resolve conflict with #82759 in compiler/rustc_middle/src/lib.rs. |
@bors r+ |
📌 Commit 567f0e1 has been approved by |
☀️ Test successful - checks-actions |
Needs |
Stabilizes the following associated items on
char
:char::MAX
char::REPLACEMENT_CHARACTER
char::UNICODE_VERSION
char::decode_utf16
char::from_u32
char::from_u32_unchecked
char::from_digit
Closes #71763.