Skip to content

Commit 91f52a5

Browse files
committed
impl AsRef<[T]> for vec::IntoIter<T>
1 parent a0f06d1 commit 91f52a5

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/liballoc/vec.rs

+7
Original file line numberDiff line numberDiff line change
@@ -2603,6 +2603,13 @@ impl<T> IntoIter<T> {
26032603
}
26042604
}
26052605

2606+
#[stable(feature = "vec_intoiter_as_ref", since = "1.46.0")]
2607+
impl<T> AsRef<[T]> for IntoIter<T> {
2608+
fn as_ref(&self) -> &[T] {
2609+
self.as_slice()
2610+
}
2611+
}
2612+
26062613
#[stable(feature = "rust1", since = "1.0.0")]
26072614
unsafe impl<T: Send> Send for IntoIter<T> {}
26082615
#[stable(feature = "rust1", since = "1.0.0")]

0 commit comments

Comments
 (0)