Skip to content

Commit 738f848

Browse files
committed
stabilize vec_drain_as_slice
1 parent a0f06d1 commit 738f848

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/liballoc/vec.rs

+8-2
Original file line numberDiff line numberDiff line change
@@ -2747,19 +2747,25 @@ impl<'a, T> Drain<'a, T> {
27472747
/// # Examples
27482748
///
27492749
/// ```
2750-
/// # #![feature(vec_drain_as_slice)]
27512750
/// let mut vec = vec!['a', 'b', 'c'];
27522751
/// let mut drain = vec.drain(..);
27532752
/// assert_eq!(drain.as_slice(), &['a', 'b', 'c']);
27542753
/// let _ = drain.next().unwrap();
27552754
/// assert_eq!(drain.as_slice(), &['b', 'c']);
27562755
/// ```
2757-
#[unstable(feature = "vec_drain_as_slice", reason = "recently added", issue = "58957")]
2756+
#[stable(feature = "vec_drain_as_slice", since = "1.46.0")]
27582757
pub fn as_slice(&self) -> &[T] {
27592758
self.iter.as_slice()
27602759
}
27612760
}
27622761

2762+
#[stable(feature = "vec_drain_as_slice", since = "1.46.0")]
2763+
impl<'a, T> AsRef<[T]> for Drain<'a, T> {
2764+
fn as_ref(&self) -> &[T] {
2765+
self.as_slice()
2766+
}
2767+
}
2768+
27632769
#[stable(feature = "drain", since = "1.6.0")]
27642770
unsafe impl<T: Sync> Sync for Drain<'_, T> {}
27652771
#[stable(feature = "drain", since = "1.6.0")]

0 commit comments

Comments
 (0)