-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
collections: Reorder slice methods to improve API docs #25625
Conversation
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @brson (or someone else) soon. If any changes to this PR are deemed necessary, please add them as extra commits. This ensures that the reviewer can see what has changed since they last reviewed the code. The way Github handles out-of-date commits, this should also make it reasonably obvious what issues have or haven't been addressed. Large or tricky changes may require several passes of review and changes. Please see CONTRIBUTING.md for more information. |
New order (since the patch makes this inscrutable): |
Actually let's just inline it:
|
Seems to be basically an improvement, though I don't like the clobber to history. @bors r+ |
📌 Commit 7b89fe0 has been approved by |
None of the methods have their real implementation inline anyway, this is just the façade. |
☔ The latest upstream changes (presumably #25588) made this pull request unmergeable. Please resolve the merge conflicts. |
We have an evolutionary history whose traces are still visible in the slice docs today. Some heuristics: * Group method and method_mut together * Group method and method_by together * Group by use case, here we have roughly: Basic interrogators (len) Mutation (swap) Iterators (iter) Segmentation (split) Searching (contains) Permutations (permutations) Misc (clone_from_slice)
Rebased! |
@bors r+ |
📌 Commit 77dcaa5 has been approved by |
⌛ Testing commit 77dcaa5 with merge b287254... |
💔 Test failed - auto-mac-64-opt |
Looks like failure is unrelated and retry is needed :( |
@bors retry |
⌛ Testing commit 77dcaa5 with merge 667a634... |
💔 Test failed - auto-linux-32-opt |
Argh, no idea why this keeps happening. |
Sometimes it's just stubborn 💢 @bors retry |
collections: Reorder slice methods to improve API docs We have an evolutionary history whose traces are still visible in the slice docs today. Some heuristics: * Group method and method_mut together * Group method and method_by together * Group by use case, here we have roughly: Basic interrogators (len) Mutation (swap) Iterators (iter) Segmentation (split) Searching (contains) Permutations (permutations) Misc (clone_from_slice)
come on bors! 🎱 |
collections: Reorder slice methods to improve API docs
We have an evolutionary history whose traces are still visible in the
slice docs today.
Some heuristics:
Group method and method_mut together
Group method and method_by together
Group by use case, here we have roughly:
Basic interrogators (len)
Mutation (swap)
Iterators (iter)
Segmentation (split)
Searching (contains)
Permutations (permutations)
Misc (clone_from_slice)