Tracking issue for [T]::rchunks, rchunks_mut, rchunks_exact, rchunks_exact_mut #55177
Labels
B-unstable
Blocker: Implemented in the nightly compiler and unstable.
C-tracking-issue
Category: A tracking issue for an RFC or an unstable feature.
T-libs-api
Relevant to the library API team, which will review and decide on the PR/issue.
Implemented in #54580.
These are similar to
chunks
,chunks_mut
,chunks_exact
, andchunks_exact_mut
respectively, but they start from the end of the slice. They differ from calling.rev()
on those other iterators (which is also possible) when the slice’s length is not a multiple of the chunk size: the remainder (either a smaller chunk or accessible through a separate method) is at the start of the slice instead of the end.CC #47115 which tracks
chunks_exact
andchunks_exact_mut
.The text was updated successfully, but these errors were encountered: