-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
Tracking Issue for VecDeque binary search functions #78021
Comments
We recently changed |
@m-ou-se Okay, I can do that... |
@m-ou-se I added the quick return for |
Feel free to send that as a PR and assign me with
I don't have a very strong opinion on that. I think it might be useful, but I'd be fine with starting the FCP for just the three |
Sorry about the radio silence, I've added |
… r=m-ou-se Address comments for vecdeque_binary_search rust-lang#78021
Rollup of 4 pull requests Successful merges: - rust-lang#83337 (rustdoc: Hide item contents, not items) - rust-lang#83944 (Fix a couple resolve bugs from binder refactor) - rust-lang#84145 (Address comments for vecdeque_binary_search rust-lang#78021) - rust-lang#84172 (Compiler error messages: reduce assertiveness of message E0384) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
@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. 🔔 |
The final comment period, with a disposition to merge, as per the review above, is now complete. As the automated representative of the governance process, I would like to thank the author for their work and everyone else who contributed. The RFC will be merged soon. |
…=m-ou-se Stabilize `vecdeque_binary_search` This PR stabilizes the feature `vecdeque_binary_search` as tracked in rust-lang#78021. The tracking issue has not received any comments for the past 5 months, and concerns have been raised neither in the RFC rust-lang/rfcs#2997 nor in the tracking issue rust-lang#78021.
…=m-ou-se Stabilize `vecdeque_binary_search` This PR stabilizes the feature `vecdeque_binary_search` as tracked in rust-lang#78021. The tracking issue has not received any comments for the past 5 months, and concerns have been raised neither in the RFC rust-lang/rfcs#2997 nor in the tracking issue rust-lang#78021.
It has been stabilized (#83362), closing. |
Feature gate:
#![feature(vecdeque_binary_search)]
This is a tracking issue for
VecDeque::binary_search{,_by,_by_key}()
, formerly RFC rust-lang/rfcs#2997Public API
Steps / History
vecdeque_binary_search
#83362Unresolved Questions
Equal
like we do for[]
? Tracking Issue for VecDeque binary search functions #78021 (comment)partition_point
too, just like[]
has?The text was updated successfully, but these errors were encountered: