Skip to content

Commit

Permalink
Add a tracking issue for new as_slice methods
Browse files Browse the repository at this point in the history
  • Loading branch information
cuviper committed Mar 6, 2019
1 parent 51e0d1c commit e478cad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/liballoc/vec.rs
Expand Up @@ -2481,7 +2481,7 @@ impl<'a, T> Drain<'a, T> {
/// let _ = drain.next().unwrap();
/// assert_eq!(drain.as_slice(), &['b', 'c']);
/// ```
#[unstable(feature = "vec_drain_as_slice", reason = "recently added", issue = "0")]
#[unstable(feature = "vec_drain_as_slice", reason = "recently added", issue = "58957")]
pub fn as_slice(&self) -> &[T] {
self.iter.as_slice()
}
Expand Down
2 changes: 1 addition & 1 deletion src/libcore/slice/mod.rs
Expand Up @@ -3312,7 +3312,7 @@ impl<'a, T> IterMut<'a, T> {
/// // Now `as_slice` returns "[2, 3]":
/// assert_eq!(iter.as_slice(), &[2, 3]);
/// ```
#[unstable(feature = "slice_iter_mut_as_slice", reason = "recently added", issue = "0")]
#[unstable(feature = "slice_iter_mut_as_slice", reason = "recently added", issue = "58957")]
pub fn as_slice(&self) -> &[T] {
self.make_slice()
}
Expand Down

0 comments on commit e478cad

Please sign in to comment.