We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f75f75a commit 79a9ac5Copy full SHA for 79a9ac5
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