Skip to content

Commit af73fbd

Browse files
author
bors-servo
authored
Auto merge of #172 - mbrubeck:fused, r=mbrubeck
Implement `FusedIterator` for `IntoIter` Rebase of #143
2 parents 8375b57 + ba6918d commit af73fbd

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1561,6 +1561,7 @@ impl<A: Array> DoubleEndedIterator for IntoIter<A> {
15611561
}
15621562

15631563
impl<A: Array> ExactSizeIterator for IntoIter<A> {}
1564+
impl<A: Array> FusedIterator for IntoIter<A> {}
15641565

15651566
impl<A: Array> IntoIterator for SmallVec<A> {
15661567
type IntoIter = IntoIter<A>;

0 commit comments

Comments
 (0)