Implement FusedIterator trait on StepBy if the underlying iterator is fused - #156999
Implement FusedIterator trait on StepBy if the underlying iterator is fused#156999asder8215 wants to merge 1 commit into
Conversation
|
rustbot has assigned @Mark-Simulacrum. Use Why was this reviewer chosen?The reviewer was selected based on:
|
|
Let's try the new rfcbot functionality... @rfcbot fcp merge libs-api |
|
@Mark-Simulacrum 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. |
This comment has been minimized.
This comment has been minimized.
|
This PR was rebased onto a different main commit. Here's a range-diff highlighting what actually changed. Rebasing is a normal part of keeping PRs up to date, so no action is needed—this note is just to help reviewers. |
This PR implements the
FusedIteratortrait forStepByif the underlying iterator also implementsFusedIteratoras per accepted in this ACP.This would have to be insta-stable as we're implementing a trait on a stable feature.