We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a0ada0 commit 9528988Copy full SHA for 9528988
library/core/src/iter/adapters/intersperse.rs
@@ -1,6 +1,9 @@
1
use super::Peekable;
2
3
/// 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.
7
#[unstable(feature = "iter_intersperse", reason = "recently added", issue = "79524")]
8
#[derive(Debug, Clone)]
9
pub struct Intersperse<I: Iterator>
@@ -55,6 +58,9 @@ where
55
58
}
56
59
57
60
61
62
+/// This `struct` is created by [`Iterator::intersperse_with`]. See it's
63
+/// documentation for more information.
64
65
pub struct IntersperseWith<I, G>
66
where
0 commit comments