Skip to content

Commit

Permalink
Convert Into<Box<[T]>> for Vec<T> into From<Vec<T>> for Box<[T]>
Browse files Browse the repository at this point in the history
  • Loading branch information
ollie27 committed Jun 17, 2017
1 parent dfb8c80 commit 222a328
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/liballoc/vec.rs
Expand Up @@ -2124,10 +2124,12 @@ impl<T> From<Box<[T]>> for Vec<T> {
}
}

#[stable(feature = "box_from_vec", since = "1.18.0")]
impl<T> Into<Box<[T]>> for Vec<T> {
fn into(self) -> Box<[T]> {
self.into_boxed_slice()
// note: test pulls in libstd, which causes errors here
#[cfg(not(test))]
#[stable(feature = "box_from_vec", since = "1.20.0")]
impl<T> From<Vec<T>> for Box<[T]> {
fn from(v: Vec<T>) -> Box<[T]> {
v.into_boxed_slice()
}
}

Expand Down

0 comments on commit 222a328

Please sign in to comment.