Update liballoc vec doc link
This commit is contained in:
parent
e0d215ff9e
commit
d2ecfcf21d
1 changed files with 3 additions and 8 deletions
|
@ -2620,7 +2620,6 @@ where
|
||||||
///
|
///
|
||||||
/// This `struct` is created by the `into_iter` method on [`Vec`] (provided
|
/// This `struct` is created by the `into_iter` method on [`Vec`] (provided
|
||||||
/// by the [`IntoIterator`] trait).
|
/// by the [`IntoIterator`] trait).
|
||||||
///
|
|
||||||
#[stable(feature = "rust1", since = "1.0.0")]
|
#[stable(feature = "rust1", since = "1.0.0")]
|
||||||
pub struct IntoIter<T> {
|
pub struct IntoIter<T> {
|
||||||
buf: NonNull<T>,
|
buf: NonNull<T>,
|
||||||
|
@ -2800,9 +2799,7 @@ unsafe impl<#[may_dangle] T> Drop for IntoIter<T> {
|
||||||
|
|
||||||
/// A draining iterator for `Vec<T>`.
|
/// A draining iterator for `Vec<T>`.
|
||||||
///
|
///
|
||||||
/// This `struct` is created by the [`drain`] method on [`Vec`].
|
/// This `struct` is created by [`Vec::drain`].
|
||||||
///
|
|
||||||
/// [`drain`]: struct.Vec.html#method.drain
|
|
||||||
#[stable(feature = "drain", since = "1.6.0")]
|
#[stable(feature = "drain", since = "1.6.0")]
|
||||||
pub struct Drain<'a, T: 'a> {
|
pub struct Drain<'a, T: 'a> {
|
||||||
/// Index of tail to preserve
|
/// Index of tail to preserve
|
||||||
|
@ -2930,10 +2927,8 @@ impl<T> FusedIterator for Drain<'_, T> {}
|
||||||
|
|
||||||
/// A splicing iterator for `Vec`.
|
/// A splicing iterator for `Vec`.
|
||||||
///
|
///
|
||||||
/// This struct is created by the [`splice()`] method on [`Vec`]. See its
|
/// This struct is created by [`Vec::splice()`].
|
||||||
/// documentation for more.
|
/// See its documentation for more.
|
||||||
///
|
|
||||||
/// [`splice()`]: struct.Vec.html#method.splice
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
#[stable(feature = "vec_splice", since = "1.21.0")]
|
#[stable(feature = "vec_splice", since = "1.21.0")]
|
||||||
pub struct Splice<'a, I: Iterator + 'a> {
|
pub struct Splice<'a, I: Iterator + 'a> {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue