@@ -358,7 +358,7 @@ mod spec_extend;
358
358
///
359
359
/// `vec![x; n]`, `vec![a, b, c, d]`, and
360
360
/// [`Vec::with_capacity(n)`][`Vec::with_capacity`], will all produce a `Vec`
361
- /// with exactly the requested capacity. If <code>[len] == [capacity]</code>,
361
+ /// with at least the requested capacity. If <code>[len] == [capacity]</code>,
362
362
/// (as is the case for the [`vec!`] macro), then a `Vec<T>` can be converted to
363
363
/// and from a [`Box<[T]>`][owned slice] without reallocating or moving the elements.
364
364
///
@@ -1023,8 +1023,11 @@ impl<T, A: Allocator> Vec<T, A> {
1023
1023
1024
1024
/// Shrinks the capacity of the vector as much as possible.
1025
1025
///
1026
- /// It will drop down as close as possible to the length but the allocator
1027
- /// may still inform the vector that there is space for a few more elements.
1026
+ /// The behavior of this method depends on the allocator, which may either shrink the vector
1027
+ /// in-place or reallocate. The resulting vector might still have some excess capacity, just as
1028
+ /// is the case for [`with_capacity`]. See [`Allocator::shrink`] for more details.
1029
+ ///
1030
+ /// [`with_capacity`]: Vec::with_capacity
1028
1031
///
1029
1032
/// # Examples
1030
1033
///
@@ -1074,10 +1077,10 @@ impl<T, A: Allocator> Vec<T, A> {
1074
1077
1075
1078
/// Converts the vector into [`Box<[T]>`][owned slice].
1076
1079
///
1077
- /// If the vector has excess capacity, its items will be moved into a
1078
- /// newly-allocated buffer with exactly the right capacity.
1080
+ /// Before doing the conversion, this method discards excess capacity like [`shrink_to_fit`].
1079
1081
///
1080
1082
/// [owned slice]: Box
1083
+ /// [`shrink_to_fit`]: Vec::shrink_to_fit
1081
1084
///
1082
1085
/// # Examples
1083
1086
///
@@ -3290,8 +3293,10 @@ impl<T, A: Allocator> From<Box<[T], A>> for Vec<T, A> {
3290
3293
impl < T , A : Allocator > From < Vec < T , A > > for Box < [ T ] , A > {
3291
3294
/// Convert a vector into a boxed slice.
3292
3295
///
3293
- /// If `v` has excess capacity, its items will be moved into a
3294
- /// newly-allocated buffer with exactly the right capacity.
3296
+ /// Before doing the conversion, this method discards excess capacity like [`Vec::shrink_to_fit`].
3297
+ ///
3298
+ /// [owned slice]: Box
3299
+ /// [`Vec::shrink_to_fit`]: Vec::shrink_to_fit
3295
3300
///
3296
3301
/// # Examples
3297
3302
///
0 commit comments