Skip to content

Commit

Permalink
Implement FusedIterator for IntoIter
Browse files Browse the repository at this point in the history
  • Loading branch information
koute authored and mbrubeck committed Oct 28, 2019
1 parent 1b8a145 commit ba6918d
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 @@ -1559,6 +1559,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 ba6918d

Please sign in to comment.