Skip to content

Commit 4b743bf

Browse files
committed
remove unnecessary bound on Zip specialization impl
I originally added this bound in an attempt to make the specialization sound for owning iterators but it was never correct here and the correct and already implemented solution is is to place it on the IntoIter implementation.
1 parent 497ee32 commit 4b743bf

File tree

1 file changed

+2
-6
lines changed
  • library/core/src/iter/adapters

1 file changed

+2
-6
lines changed

library/core/src/iter/adapters/zip.rs

+2-6
Original file line numberDiff line numberDiff line change
@@ -429,13 +429,9 @@ where
429429
}
430430
}
431431

432+
// Since SourceIter forwards the left hand side we do the same here
432433
#[unstable(issue = "none", feature = "inplace_iteration")]
433-
// Limited to Item: Copy since interaction between Zip's use of TrustedRandomAccess
434-
// and Drop implementation of the source is unclear.
435-
//
436-
// An additional method returning the number of times the source has been logically advanced
437-
// (without calling next()) would be needed to properly drop the remainder of the source.
438-
unsafe impl<A: InPlaceIterable, B: Iterator> InPlaceIterable for Zip<A, B> where A::Item: Copy {}
434+
unsafe impl<A: InPlaceIterable, B: Iterator> InPlaceIterable for Zip<A, B> {}
439435

440436
#[stable(feature = "rust1", since = "1.0.0")]
441437
impl<A: Debug, B: Debug> Debug for Zip<A, B> {

0 commit comments

Comments
 (0)