Skip to content

Commit 9528988

Browse files
committed
Add doc intralinks
1 parent 7a0ada0 commit 9528988

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

library/core/src/iter/adapters/intersperse.rs

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
use super::Peekable;
22

33
/// An iterator adapter that places a separator between all elements.
4+
///
5+
/// This `struct` is created by [`Iterator::intersperse`]. See it's documentation
6+
/// for more information.
47
#[unstable(feature = "iter_intersperse", reason = "recently added", issue = "79524")]
58
#[derive(Debug, Clone)]
69
pub struct Intersperse<I: Iterator>
@@ -55,6 +58,9 @@ where
5558
}
5659

5760
/// An iterator adapter that places a separator between all elements.
61+
///
62+
/// This `struct` is created by [`Iterator::intersperse_with`]. See it's
63+
/// documentation for more information.
5864
#[unstable(feature = "iter_intersperse", reason = "recently added", issue = "79524")]
5965
pub struct IntersperseWith<I, G>
6066
where

0 commit comments

Comments
 (0)