Uh oh!
There was an error while loading. Please reload this page.
Add slice::rchunks(), rchunks_mut(), rchunks_exact() and rchunks_exact_mut() - #54580
Conversation
rust-highfive
commented
Sep 25, 2018
r? @dtolnay (rust_highfive has picked a reviewer for you, use r? to override) |
dtolnay
commented
Sep 28, 2018
Simon would you be able to take this review? I haven't gotten a chance to look at the code but this sounds like a natural extension of #47115. r? @SimonSapin |
bors
commented
Sep 29, 2018
☔ The latest upstream changes (presumably #54554) made this pull request unmergeable. Please resolve the merge conflicts. |
sdroege
commented
Sep 29, 2018
Rebased |
bors
commented
Oct 12, 2018
☔ The latest upstream changes (presumably #54924) made this pull request unmergeable. Please resolve the merge conflicts. |
sdroege
commented
Oct 12, 2018
Rebased again |
SimonSapin
commented
Oct 18, 2018
Looks great, thanks! Sorry for the repeated conflicts and rebasing. r=me with the tracking issue changed to #55177 |
sdroege
commented
Oct 18, 2018
Updated the tracking issue in the commit, thanks for the review and also thanks for creating the tracking issue :) |
…t_mut() These work exactly like the normal chunks iterators but start creating chunks from the end of the slice. See rust-lang#55177 for the tracking issue
sdroege
commented
Oct 18, 2018
travis is green again |
SimonSapin
commented
Oct 18, 2018
@bors r+ |
bors
commented
Oct 18, 2018
📌 Commit 80a8e5c has been approved by |
bors
commented
Oct 18, 2018
Add slice::rchunks(), rchunks_mut(), rchunks_exact() and rchunks_exact_mut() These work exactly like the normal chunks iterators but start creating chunks from the end of the slice. ---- The new iterators were motivated by a [comment](#47115 (comment)) by @DutchGhost. ~~~This currently includes the commits from #54537 to not have to rename things twice or have merge conflicts. I'll force-push a new version of the branch ones those are in master.~~~ Also the stabilization tracking issue is just some number right now. I'll create the corresponding issue once this is reviewed and otherwise mergeable. cc @DutchGhost
bors
commented
Oct 18, 2018
☀️ Test successful - status-appveyor, status-travis |
These work exactly like the normal chunks iterators but start creating
chunks from the end of the slice.
The new iterators were motivated by a comment by @DutchGhost.