diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2015-03-31 15:58:58 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2015-03-31 15:58:58 -0700 |
| commit | 30283d45bb76f7300a0c99ecd719b0c649c8429a (patch) | |
| tree | 2a45ec35058525ca1a97fdc7f9832eb84052b74b /src/libcollections/vec.rs | |
| parent | a37311d486d5e71b2f2d1290c9f9228c4f6ead79 (diff) | |
| parent | b9ab5fe7c29d0675ae03c87f1454fb52b36c18b4 (diff) | |
| download | rust-30283d45bb76f7300a0c99ecd719b0c649c8429a.tar.gz rust-30283d45bb76f7300a0c99ecd719b0c649c8429a.zip | |
rollup merge of #23908: aturon/stab-more-stragglers
* The `io::Seek` trait.
* The `Iterator::{partition, unsip}` methods.
* The `Vec::into_boxed_slice` method.
* The `LinkedList::append` method.
* The `{or_insert, or_insert_with` methods in the `Entry` APIs.
r? @alexcrichton
Diffstat (limited to 'src/libcollections/vec.rs')
| -rw-r--r-- | src/libcollections/vec.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcollections/vec.rs b/src/libcollections/vec.rs index 2ac50c6cabf..39601783e42 100644 --- a/src/libcollections/vec.rs +++ b/src/libcollections/vec.rs @@ -389,7 +389,7 @@ impl<T> Vec<T> { /// Note that this will drop any excess capacity. Calling this and /// converting back to a vector with `into_vec()` is equivalent to calling /// `shrink_to_fit()`. - #[unstable(feature = "collections")] + #[stable(feature = "rust1", since = "1.0.0")] pub fn into_boxed_slice(mut self) -> Box<[T]> { self.shrink_to_fit(); unsafe { |
