Add BinaryHeap::pop_if() to manual_pop_if#16734
Add BinaryHeap::pop_if() to manual_pop_if#16734samueltardieu merged 1 commit intorust-lang:masterfrom
BinaryHeap::pop_if() to manual_pop_if#16734Conversation
|
r? @Jarcho rustbot has assigned @Jarcho. Use Why was this reviewer chosen?The reviewer was selected based on:
|
|
r? samueltardieu |
cd569c3 to
f693316
Compare
|
Reminder, once the PR becomes ready for a review, use |
We don't usually recommend using features, as it might make the code incompatible with stable releases. Many developers use nightly to get the latest version of the tools but aim at being stable (or lower) compatible. |
f693316 to
e680c6f
Compare
Ah yes, of course, that makes sense. It seems like it would be useful to have some sort of feature discovery, maybe an opt-in "things that could be cleanup up by enabling features that are likely-ish to be stabilized" check. |
|
@rustbot ready |
13eb57b to
b8d9b66
Compare
b8d9b66 to
9bf6faf
Compare
|
@rustbot ready |
|
Thanks |
Detects manual implementations of the newly implemented
BinaryHeap::pop_if()inmanual_pop_if.I wasn't sure about how best to handle checking for the nightly feature. Could we let people compiling with nightly know that the feature is available even if they don't have it enabled?
changelog: [
manual_pop_if]: detect manual implementations ofBinaryHeap::pop_if()