mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
parent
fd20513f52
commit
e012b9a78d
@ -2043,8 +2043,6 @@ impl<T, A: Allocator> Vec<T, A> {
|
||||
/// # Examples
|
||||
///
|
||||
/// ```
|
||||
/// #![feature(vec_spare_capacity)]
|
||||
///
|
||||
/// // Allocate vector big enough for 10 elements.
|
||||
/// let mut v = Vec::with_capacity(10);
|
||||
///
|
||||
@ -2061,7 +2059,7 @@ impl<T, A: Allocator> Vec<T, A> {
|
||||
///
|
||||
/// assert_eq!(&v, &[0, 1, 2]);
|
||||
/// ```
|
||||
#[unstable(feature = "vec_spare_capacity", issue = "75017")]
|
||||
#[stable(feature = "vec_spare_capacity", since = "1.60.0")]
|
||||
#[inline]
|
||||
pub fn spare_capacity_mut(&mut self) -> &mut [MaybeUninit<T>] {
|
||||
// Note:
|
||||
|
@ -31,7 +31,6 @@
|
||||
#![feature(iter_advance_by)]
|
||||
#![feature(slice_group_by)]
|
||||
#![feature(slice_partition_dedup)]
|
||||
#![feature(vec_spare_capacity)]
|
||||
#![feature(string_remove_matches)]
|
||||
#![feature(const_btree_new)]
|
||||
#![feature(const_default_impls)]
|
||||
|
@ -1038,7 +1038,7 @@ impl<T> MaybeUninit<T> {
|
||||
/// ```
|
||||
///
|
||||
/// ```
|
||||
/// #![feature(maybe_uninit_write_slice, vec_spare_capacity)]
|
||||
/// #![feature(maybe_uninit_write_slice)]
|
||||
/// use std::mem::MaybeUninit;
|
||||
///
|
||||
/// let mut vec = Vec::with_capacity(32);
|
||||
@ -1098,7 +1098,7 @@ impl<T> MaybeUninit<T> {
|
||||
/// ```
|
||||
///
|
||||
/// ```
|
||||
/// #![feature(maybe_uninit_write_slice, vec_spare_capacity)]
|
||||
/// #![feature(maybe_uninit_write_slice)]
|
||||
/// use std::mem::MaybeUninit;
|
||||
///
|
||||
/// let mut vec = Vec::with_capacity(32);
|
||||
|
@ -341,7 +341,6 @@
|
||||
#![feature(unboxed_closures)]
|
||||
#![feature(unwrap_infallible)]
|
||||
#![feature(vec_into_raw_parts)]
|
||||
#![feature(vec_spare_capacity)]
|
||||
// NB: the above list is sorted to minimize merge conflicts.
|
||||
#![default_lib_allocator]
|
||||
|
||||
|
@ -1 +1 @@
|
||||
Subproject commit 2adc17a5442614dbe34626fdd9b32de7c07b8086
|
||||
Subproject commit 1d5d0e8b0e3134dc781adb98057e38ffdf200df2
|
Loading…
Reference in New Issue
Block a user