diff options
| author | gewitternacht <60887951+gewitternacht@users.noreply.github.com> | 2025-07-23 01:44:18 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-23 01:44:18 +0200 |
| commit | 623317eb5e2bf73b53a5cd52d693ac032cf5aa32 (patch) | |
| tree | 44d8f799f6237da31f705df4a103b36469fd15bd | |
| parent | cdbcd72f341c949e4fa11f58d76a094bd435d18f (diff) | |
| download | rust-623317eb5e2bf73b53a5cd52d693ac032cf5aa32.tar.gz rust-623317eb5e2bf73b53a5cd52d693ac032cf5aa32.zip | |
add links to collections
| -rw-r--r-- | library/core/src/clone.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/library/core/src/clone.rs b/library/core/src/clone.rs index 64916f49f3a..c4778edf0fc 100644 --- a/library/core/src/clone.rs +++ b/library/core/src/clone.rs @@ -176,6 +176,11 @@ mod uninit; /// (even if the referent doesn't), /// while variables captured by mutable reference never implement `Clone`. /// +/// [`HashMap`]: ../../std/collections/struct.HashMap.html +/// [`HashSet`]: ../../std/collections/struct.HashSet.html +/// [`BTreeMap`]: ../../std/collections/struct.BTreeMap.html +/// [`BTreeSet`]: ../../std/collections/struct.BTreeSet.html +/// [`BinaryHeap`]: ../../std/collections/struct.BinaryHeap.html /// [impls]: #implementors #[stable(feature = "rust1", since = "1.0.0")] #[lang = "clone"] |
