Skip to content

Commit

Permalink
Auto merge of #172 - mbrubeck:fused, r=mbrubeck
Browse files Browse the repository at this point in the history
Implement `FusedIterator` for `IntoIter`

Rebase of #143
  • Loading branch information
bors-servo authored Oct 28, 2019
2 parents 8375b57 + ba6918d commit af73fbd
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1561,6 +1561,7 @@ impl<A: Array> DoubleEndedIterator for IntoIter<A> {
}

impl<A: Array> ExactSizeIterator for IntoIter<A> {}
impl<A: Array> FusedIterator for IntoIter<A> {}

impl<A: Array> IntoIterator for SmallVec<A> {
type IntoIter = IntoIter<A>;
Expand Down

0 comments on commit af73fbd

Please sign in to comment.