-
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
Make VecDeque::new
const
#105127
Make VecDeque::new
const
#105127
Conversation
(rustbot has picked a reviewer for you, use r? to override) |
Hey! It looks like you've submitted a new PR for the library teams! If this PR contains changes to any Examples of
|
@rustbot label +T-libs-api -T-libs |
Had a little issue with git, should be good now. @rustbot label -A-bootstrap -A-testsuite |
@rust-lang/libs-api: This PR changes the stable https://doc.rust-lang.org/nightly/std/collections/struct.VecDeque.html#method.new |
Team member @dtolnay 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. |
Is there anything blocking this or are we just waiting on one more reviewer to tick their box? |
I'm gonna take the liberty of checking @yaahc's box because she has stepped down from T-libs-api. This PR would be in FCP already if the checkbox list were accurate. |
🔔 This is now entering its final comment period, as per the review above. 🔔 |
@bors r+ |
☀️ Test successful - checks-actions |
Finished benchmarking commit (1d12c3c): comparison URL. Overall result: no relevant changes - no action needed@rustbot label: -perf-regression Instruction countThis benchmark run did not return any relevant results for this metric. Max RSS (memory usage)This benchmark run did not return any relevant results for this metric. CyclesThis benchmark run did not return any relevant results for this metric. |
Make `VecDeque::new` const (See rust-lang#105072)
VecDeque no longer has initial capacity See rust-lang/rust#105127 Signed-off-by: Neil Shen <overvenus@gmail.com>
(See #105072)