@@ -166,7 +166,7 @@ use super::range::RangeArgument;
166
166
/// # Slicing
167
167
///
168
168
/// A `Vec` can be mutable. Slices, on the other hand, are read-only objects.
169
- /// To get a slice, use "&" . Example:
169
+ /// To get a slice, use `&` . Example:
170
170
///
171
171
/// ```
172
172
/// fn read_slice(slice: &[usize]) {
@@ -203,33 +203,33 @@ use super::range::RangeArgument;
203
203
///
204
204
/// # Guarantees
205
205
///
206
- /// Due to its incredibly fundamental nature, Vec makes a lot of guarantees
206
+ /// Due to its incredibly fundamental nature, ` Vec` makes a lot of guarantees
207
207
/// about its design. This ensures that it's as low-overhead as possible in
208
208
/// the general case, and can be correctly manipulated in primitive ways
209
209
/// by unsafe code. Note that these guarantees refer to an unqualified `Vec<T>`.
210
210
/// If additional type parameters are added (e.g. to support custom allocators),
211
211
/// overriding their defaults may change the behavior.
212
212
///
213
- /// Most fundamentally, Vec is and always will be a (pointer, capacity, length)
213
+ /// Most fundamentally, ` Vec` is and always will be a (pointer, capacity, length)
214
214
/// triplet. No more, no less. The order of these fields is completely
215
215
/// unspecified, and you should use the appropriate methods to modify these.
216
216
/// The pointer will never be null, so this type is null-pointer-optimized.
217
217
///
218
218
/// However, the pointer may not actually point to allocated memory. In particular,
219
- /// if you construct a Vec with capacity 0 via [`Vec::new()`], [`vec![]`][`vec!`],
219
+ /// if you construct a ` Vec` with capacity 0 via [`Vec::new()`], [`vec![]`][`vec!`],
220
220
/// [`Vec::with_capacity(0)`][`Vec::with_capacity`], or by calling [`shrink_to_fit()`]
221
221
/// on an empty Vec, it will not allocate memory. Similarly, if you store zero-sized
222
222
/// types inside a `Vec`, it will not allocate space for them. *Note that in this case
223
- /// the `Vec` may not report a [`capacity()`] of 0*. Vec will allocate if and only
223
+ /// the `Vec` may not report a [`capacity()`] of 0*. ` Vec` will allocate if and only
224
224
/// if [`mem::size_of::<T>()`]` * capacity() > 0`. In general, `Vec`'s allocation
225
225
/// details are subtle enough that it is strongly recommended that you only
226
- /// free memory allocated by a Vec by creating a new Vec and dropping it.
226
+ /// free memory allocated by a ` Vec` by creating a new ` Vec` and dropping it.
227
227
///
228
228
/// If a `Vec` *has* allocated memory, then the memory it points to is on the heap
229
229
/// (as defined by the allocator Rust is configured to use by default), and its
230
230
/// pointer points to [`len()`] initialized elements in order (what you would see
231
- /// if you coerced it to a slice), followed by `[ capacity()][`capacity ()`] -
232
- /// [len()][`len()`]` logically uninitialized elements.
231
+ /// if you coerced it to a slice), followed by [` capacity()`]` - `[`len ()`]
232
+ /// logically uninitialized elements.
233
233
///
234
234
/// `Vec` will never perform a "small optimization" where elements are actually
235
235
/// stored on the stack for two reasons:
@@ -249,8 +249,8 @@ use super::range::RangeArgument;
249
249
/// [`shrink_to_fit`][`shrink_to_fit()`].
250
250
///
251
251
/// [`push`] and [`insert`] will never (re)allocate if the reported capacity is
252
- /// sufficient. [`push`] and [`insert`] *will* (re)allocate if `[len()][`len()`]
253
- /// == [capacity()] [`capacity()`]` . That is, the reported capacity is completely
252
+ /// sufficient. [`push`] and [`insert`] *will* (re)allocate if
253
+ /// [`len()`]` == ` [`capacity()`]. That is, the reported capacity is completely
254
254
/// accurate, and can be relied on. It can even be used to manually free the memory
255
255
/// allocated by a `Vec` if desired. Bulk insertion methods *may* reallocate, even
256
256
/// when not necessary.
@@ -261,11 +261,10 @@ use super::range::RangeArgument;
261
261
/// strategy is used will of course guarantee `O(1)` amortized [`push`].
262
262
///
263
263
/// `vec![x; n]`, `vec![a, b, c, d]`, and
264
- /// [`Vec::with_capacity(n)`][`Vec::with_capacity`], will all
265
- /// produce a `Vec` with exactly the requested capacity. If `[len()][`len()`] ==
266
- /// [capacity()][`capacity()`]`, (as is the case for the [`vec!`] macro), then a
267
- /// `Vec<T>` can be converted to and from a [`Box<[T]>`] without reallocating or
268
- /// moving the elements.
264
+ /// [`Vec::with_capacity(n)`][`Vec::with_capacity`], will all produce a `Vec`
265
+ /// with exactly the requested capacity. If [`len()`]` == `[`capacity()`],
266
+ /// (as is the case for the [`vec!`] macro), then a `Vec<T>` can be converted to
267
+ /// and from a [`Box<[T]>`][owned slice] without reallocating or moving the elements.
269
268
///
270
269
/// `Vec` will not specifically overwrite any data that is removed from it,
271
270
/// but also won't specifically preserve it. Its uninitialized memory is
@@ -292,7 +291,7 @@ use super::range::RangeArgument;
292
291
/// [`push`]: ../../std/vec/struct.Vec.html#method.push
293
292
/// [`insert`]: ../../std/vec/struct.Vec.html#method.insert
294
293
/// [`reserve`]: ../../std/vec/struct.Vec.html#method.reserve
295
- /// [`Box<[T]>` ]: ../../std/boxed/struct.Box.html
294
+ /// [owned slice ]: ../../std/boxed/struct.Box.html
296
295
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
297
296
pub struct Vec < T > {
298
297
buf : RawVec < T > ,
@@ -329,9 +328,10 @@ impl<T> Vec<T> {
329
328
/// reallocating. If `capacity` is 0, the vector will not allocate.
330
329
///
331
330
/// It is important to note that this function does not specify the *length*
332
- /// of the returned vector, but only the *capacity*. (For an explanation of
333
- /// the difference between length and capacity, see the main `Vec<T>` docs
334
- /// above, 'Capacity and reallocation'.)
331
+ /// of the returned vector, but only the *capacity*. For an explanation of
332
+ /// the difference between length and capacity, see *[Capacity and reallocation]*.
333
+ ///
334
+ /// [Capacity and reallocation]: #capacity-and-reallocation
335
335
///
336
336
/// # Examples
337
337
///
@@ -497,13 +497,13 @@ impl<T> Vec<T> {
497
497
self . buf . shrink_to_fit ( self . len ) ;
498
498
}
499
499
500
- /// Converts the vector into [`Box<[T]>`].
500
+ /// Converts the vector into [`Box<[T]>`][owned slice] .
501
501
///
502
502
/// Note that this will drop any excess capacity. Calling this and
503
503
/// converting back to a vector with [`into_vec()`] is equivalent to calling
504
504
/// [`shrink_to_fit()`].
505
505
///
506
- /// [`Box<[T]>` ]: ../../std/boxed/struct.Box.html
506
+ /// [owned slice ]: ../../std/boxed/struct.Box.html
507
507
/// [`into_vec()`]: ../../std/primitive.slice.html#method.into_vec
508
508
/// [`shrink_to_fit()`]: #method.shrink_to_fit
509
509
///
@@ -779,7 +779,7 @@ impl<T> Vec<T> {
779
779
780
780
/// Retains only the elements specified by the predicate.
781
781
///
782
- /// In other words, remove all elements `e` such that `f(&e)` returns false.
782
+ /// In other words, remove all elements `e` such that `f(&e)` returns ` false` .
783
783
/// This method operates in place and preserves the order of the retained
784
784
/// elements.
785
785
///
0 commit comments