]> git.proxmox.com Git - rustc.git/blobdiff - library/core/src/iter/traits/iterator.rs
New upstream version 1.62.1+dfsg1
[rustc.git] / library / core / src / iter / traits / iterator.rs
index 53fbe4cbc42f53fca6dd42ccfa1c59b53c29522f..69f06fb06ef5d19c478a691dc9b0b29fca84a69d 100644 (file)
@@ -470,6 +470,10 @@ pub trait Iterator {
     /// it will first try to advance the first iterator at most one time and if it still yielded an item
     /// try to advance the second iterator at most one time.
     ///
+    /// To 'undo' the result of zipping up two iterators, see [`unzip`].
+    ///
+    /// [`unzip`]: Iterator::unzip
+    ///
     /// # Examples
     ///
     /// Basic usage: