-
Notifications
You must be signed in to change notification settings - Fork 13.4k
Tracking Issue for const_eq_ignore_ascii_case
#131719
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
Comments
…, r=m-ou-se Add new unstable feature `const_eq_ignore_ascii_case` Tracking issue - rust-lang#131719 Mark `[u8]`, `str` `eq_ignore_ascii_case` functions const --- The codegen for this implementation matches the existing `iter::zip` implementation better than incrementing with a counter while loop with counter - https://rust.godbolt.org/z/h9cs5zajc while let - https://rust.godbolt.org/z/ecMeMjjEb
…r=m-ou-se Add new unstable feature `const_eq_ignore_ascii_case` Tracking issue - rust-lang#131719 Mark `[u8]`, `str` `eq_ignore_ascii_case` functions const --- The codegen for this implementation matches the existing `iter::zip` implementation better than incrementing with a counter while loop with counter - https://rust.godbolt.org/z/h9cs5zajc while let - https://rust.godbolt.org/z/ecMeMjjEb
@the8472 I'd like to stabilize this feature. The feature in itself seems very basic and can be 100% implemented using const-stable APIs. The feature has been const-unstable for almost 6 months. |
Maybe you can help with this @m-ou-se |
@rfcbot merge |
Team member @m-ou-se 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. 🔔 |
Uh oh!
There was an error while loading. Please reload this page.
Feature gate:
#![feature(const_eq_ignore_ascii_case)]
This is a tracking issue for const
eq_ignore_ascii_case
on[u8]
andstr
.Public API
Steps / History
const_eq_ignore_ascii_case
#131721Unresolved Questions
Footnotes
https://std-dev-guide.rust-lang.org/feature-lifecycle/stabilization.html ↩
The text was updated successfully, but these errors were encountered: