mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
Rollup merge of #75787 - LeSeulArtichaut:core-intra-doc, r=jyn514
Use intra-doc-links in `core::ops::*` Helps with #75080. r? @jyn514
This commit is contained in:
commit
13dfa9c874
@ -28,7 +28,6 @@
|
||||
/// [method resolution] and [type coercions].
|
||||
///
|
||||
/// [book]: ../../book/ch15-02-deref.html
|
||||
/// [`DerefMut`]: trait.DerefMut.html
|
||||
/// [more]: #more-on-deref-coercion
|
||||
/// [ref-deref-op]: ../../reference/expressions/operator-expr.html#the-dereference-operator
|
||||
/// [method resolution]: ../../reference/expressions/method-call-expr.html
|
||||
@ -125,7 +124,6 @@ impl<T: ?Sized> Deref for &mut T {
|
||||
/// [method resolution] and [type coercions].
|
||||
///
|
||||
/// [book]: ../../book/ch15-02-deref.html
|
||||
/// [`Deref`]: trait.Deref.html
|
||||
/// [more]: #more-on-deref-coercion
|
||||
/// [ref-deref-op]: ../../reference/expressions/operator-expr.html#the-dereference-operator
|
||||
/// [method resolution]: ../../reference/expressions/method-call-expr.html
|
||||
|
@ -78,9 +78,9 @@
|
||||
///
|
||||
/// In other words, if you tried to explicitly call `Drop::drop` in the above example, you'd get a compiler error.
|
||||
///
|
||||
/// If you'd like explicitly call the destructor of a value, [`std::mem::drop`] can be used instead.
|
||||
/// If you'd like explicitly call the destructor of a value, [`mem::drop`] can be used instead.
|
||||
///
|
||||
/// [`std::mem::drop`]: ../../std/mem/fn.drop.html
|
||||
/// [`mem::drop`]: drop
|
||||
///
|
||||
/// ## Drop order
|
||||
///
|
||||
@ -132,8 +132,6 @@
|
||||
/// are `Copy` get implicitly duplicated by the compiler, making it very
|
||||
/// hard to predict when, and how often destructors will be executed. As such,
|
||||
/// these types cannot have destructors.
|
||||
///
|
||||
/// [`Copy`]: ../../std/marker/trait.Copy.html
|
||||
#[lang = "drop"]
|
||||
#[stable(feature = "rust1", since = "1.0.0")]
|
||||
pub trait Drop {
|
||||
@ -141,7 +139,7 @@ pub trait Drop {
|
||||
///
|
||||
/// This method is called implicitly when the value goes out of scope,
|
||||
/// and cannot be called explicitly (this is compiler error [E0040]).
|
||||
/// However, the [`std::mem::drop`] function in the prelude can be
|
||||
/// However, the [`mem::drop`] function in the prelude can be
|
||||
/// used to call the argument's `Drop` implementation.
|
||||
///
|
||||
/// When this method has been called, `self` has not yet been deallocated.
|
||||
@ -156,12 +154,12 @@ pub trait Drop {
|
||||
/// Note that even if this panics, the value is considered to be dropped;
|
||||
/// you must not cause `drop` to be called again. This is normally automatically
|
||||
/// handled by the compiler, but when using unsafe code, can sometimes occur
|
||||
/// unintentionally, particularly when using [`std::ptr::drop_in_place`].
|
||||
/// unintentionally, particularly when using [`ptr::drop_in_place`].
|
||||
///
|
||||
/// [E0040]: ../../error-index.html#E0040
|
||||
/// [`panic!`]: ../macro.panic.html
|
||||
/// [`std::mem::drop`]: ../../std/mem/fn.drop.html
|
||||
/// [`std::ptr::drop_in_place`]: ../../std/ptr/fn.drop_in_place.html
|
||||
/// [`panic!`]: crate::panic!
|
||||
/// [`mem::drop`]: drop
|
||||
/// [`ptr::drop_in_place`]: crate::ptr::drop_in_place
|
||||
#[stable(feature = "rust1", since = "1.0.0")]
|
||||
fn drop(&mut self);
|
||||
}
|
||||
|
@ -28,8 +28,6 @@
|
||||
/// this can refer to [the relevant section in the *Rustonomicon*][nomicon].
|
||||
///
|
||||
/// [book]: ../../book/ch13-01-closures.html
|
||||
/// [`FnMut`]: trait.FnMut.html
|
||||
/// [`FnOnce`]: trait.FnOnce.html
|
||||
/// [function pointers]: ../../std/primitive.fn.html
|
||||
/// [nomicon]: ../../nomicon/hrtb.html
|
||||
///
|
||||
@ -99,8 +97,6 @@ pub trait Fn<Args>: FnMut<Args> {
|
||||
/// this can refer to [the relevant section in the *Rustonomicon*][nomicon].
|
||||
///
|
||||
/// [book]: ../../book/ch13-01-closures.html
|
||||
/// [`Fn`]: trait.Fn.html
|
||||
/// [`FnOnce`]: trait.FnOnce.html
|
||||
/// [function pointers]: ../../std/primitive.fn.html
|
||||
/// [nomicon]: ../../nomicon/hrtb.html
|
||||
///
|
||||
@ -180,8 +176,6 @@ pub trait FnMut<Args>: FnOnce<Args> {
|
||||
/// this can refer to [the relevant section in the *Rustonomicon*][nomicon].
|
||||
///
|
||||
/// [book]: ../../book/ch13-01-closures.html
|
||||
/// [`Fn`]: trait.Fn.html
|
||||
/// [`FnMut`]: trait.FnMut.html
|
||||
/// [function pointers]: ../../std/primitive.fn.html
|
||||
/// [nomicon]: ../../nomicon/hrtb.html
|
||||
///
|
||||
|
@ -5,9 +5,6 @@
|
||||
/// [`IndexMut`] is used instead. This allows nice things such as
|
||||
/// `let value = v[index]` if the type of `value` implements [`Copy`].
|
||||
///
|
||||
/// [`IndexMut`]: ../../std/ops/trait.IndexMut.html
|
||||
/// [`Copy`]: ../../std/marker/trait.Copy.html
|
||||
///
|
||||
/// # Examples
|
||||
///
|
||||
/// The following example implements `Index` on a read-only `NucleotideCount`
|
||||
@ -76,8 +73,6 @@ pub trait Index<Idx: ?Sized> {
|
||||
/// an immutable value is requested, the [`Index`] trait is used instead. This
|
||||
/// allows nice things such as `v[index] = value`.
|
||||
///
|
||||
/// [`Index`]: ../../std/ops/trait.Index.html
|
||||
///
|
||||
/// # Examples
|
||||
///
|
||||
/// A very simple implementation of a `Balance` struct that has two sides, where
|
||||
|
@ -133,13 +133,7 @@
|
||||
//! // `consume_and_return_x` can no longer be invoked at this point
|
||||
//! ```
|
||||
//!
|
||||
//! [`Fn`]: trait.Fn.html
|
||||
//! [`FnMut`]: trait.FnMut.html
|
||||
//! [`FnOnce`]: trait.FnOnce.html
|
||||
//! [`Add`]: trait.Add.html
|
||||
//! [`Sub`]: trait.Sub.html
|
||||
//! [`Mul`]: trait.Mul.html
|
||||
//! [`clone`]: ../clone/trait.Clone.html#tymethod.clone
|
||||
//! [`clone`]: Clone::clone
|
||||
//! [operator precedence]: ../../reference/expressions.html#expression-precedence
|
||||
|
||||
#![stable(feature = "rust1", since = "1.0.0")]
|
||||
|
@ -35,9 +35,7 @@ use crate::hash::Hash;
|
||||
/// assert_eq!(arr[1..=3], [ 1,2,3 ]);
|
||||
/// ```
|
||||
///
|
||||
/// [`IntoIterator`]: ../iter/trait.Iterator.html
|
||||
/// [`Iterator`]: ../iter/trait.IntoIterator.html
|
||||
/// [slicing index]: ../slice/trait.SliceIndex.html
|
||||
/// [slicing index]: crate::slice::SliceIndex
|
||||
#[cfg_attr(not(bootstrap), lang = "RangeFull")]
|
||||
#[doc(alias = "..")]
|
||||
#[derive(Copy, Clone, Default, PartialEq, Eq, Hash)]
|
||||
@ -178,8 +176,6 @@ impl<Idx: PartialOrd<Idx>> Range<Idx> {
|
||||
/// assert_eq!(arr[1.. 3], [ 1,2 ]);
|
||||
/// assert_eq!(arr[1..=3], [ 1,2,3 ]);
|
||||
/// ```
|
||||
///
|
||||
/// [`Iterator`]: ../iter/trait.IntoIterator.html
|
||||
#[cfg_attr(not(bootstrap), lang = "RangeFrom")]
|
||||
#[doc(alias = "..")]
|
||||
#[derive(Clone, PartialEq, Eq, Hash)] // not Copy -- see #27186
|
||||
@ -260,9 +256,7 @@ impl<Idx: PartialOrd<Idx>> RangeFrom<Idx> {
|
||||
/// assert_eq!(arr[1..=3], [ 1,2,3 ]);
|
||||
/// ```
|
||||
///
|
||||
/// [`IntoIterator`]: ../iter/trait.Iterator.html
|
||||
/// [`Iterator`]: ../iter/trait.IntoIterator.html
|
||||
/// [slicing index]: ../slice/trait.SliceIndex.html
|
||||
/// [slicing index]: crate::slice::SliceIndex
|
||||
#[cfg_attr(not(bootstrap), lang = "RangeTo")]
|
||||
#[doc(alias = "..")]
|
||||
#[derive(Copy, Clone, PartialEq, Eq, Hash)]
|
||||
@ -315,8 +309,8 @@ impl<Idx: PartialOrd<Idx>> RangeTo<Idx> {
|
||||
/// iteration has finished are **unspecified** other than that [`.is_empty()`]
|
||||
/// will return `true` once no more values will be produced.
|
||||
///
|
||||
/// [fused]: ../iter/trait.FusedIterator.html
|
||||
/// [`.is_empty()`]: #method.is_empty
|
||||
/// [fused]: crate::iter::FusedIterator
|
||||
/// [`.is_empty()`]: RangeInclusive::is_empty
|
||||
///
|
||||
/// # Examples
|
||||
///
|
||||
@ -383,8 +377,8 @@ impl<Idx> RangeInclusive<Idx> {
|
||||
/// Note: the value returned by this method is unspecified after the range
|
||||
/// has been iterated to exhaustion.
|
||||
///
|
||||
/// [`end()`]: #method.end
|
||||
/// [`is_empty()`]: #method.is_empty
|
||||
/// [`end()`]: RangeInclusive::end
|
||||
/// [`is_empty()`]: RangeInclusive::is_empty
|
||||
///
|
||||
/// # Examples
|
||||
///
|
||||
@ -408,8 +402,8 @@ impl<Idx> RangeInclusive<Idx> {
|
||||
/// Note: the value returned by this method is unspecified after the range
|
||||
/// has been iterated to exhaustion.
|
||||
///
|
||||
/// [`start()`]: #method.start
|
||||
/// [`is_empty()`]: #method.is_empty
|
||||
/// [`start()`]: RangeInclusive::start
|
||||
/// [`is_empty()`]: RangeInclusive::is_empty
|
||||
///
|
||||
/// # Examples
|
||||
///
|
||||
@ -558,9 +552,7 @@ impl<Idx: PartialOrd<Idx>> RangeInclusive<Idx> {
|
||||
/// assert_eq!(arr[1..=3], [ 1,2,3 ]);
|
||||
/// ```
|
||||
///
|
||||
/// [`IntoIterator`]: ../iter/trait.Iterator.html
|
||||
/// [`Iterator`]: ../iter/trait.IntoIterator.html
|
||||
/// [slicing index]: ../slice/trait.SliceIndex.html
|
||||
/// [slicing index]: crate::slice::SliceIndex
|
||||
#[cfg_attr(not(bootstrap), lang = "RangeToInclusive")]
|
||||
#[doc(alias = "..=")]
|
||||
#[derive(Copy, Clone, PartialEq, Eq, Hash)]
|
||||
|
@ -29,7 +29,7 @@ use crate::marker::Unsize;
|
||||
/// pointers. It is implemented automatically by the compiler.
|
||||
///
|
||||
/// [dst-coerce]: https://github.com/rust-lang/rfcs/blob/master/text/0982-dst-coercion.md
|
||||
/// [unsize]: ../marker/trait.Unsize.html
|
||||
/// [unsize]: crate::marker::Unsize
|
||||
/// [nomicon-coerce]: ../../nomicon/coercions.html
|
||||
#[unstable(feature = "coerce_unsized", issue = "27732")]
|
||||
#[lang = "coerce_unsized"]
|
||||
|
Loading…
Reference in New Issue
Block a user