We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0486e12 commit 2d0e4edCopy full SHA for 2d0e4ed
src/libcore/iter.rs
@@ -2740,7 +2740,13 @@ pub trait Extend<A> {
2740
/// It is important to note that both back and forth work on the same range,
2741
/// and do not cross: iteration is over when they meet in the middle.
2742
///
2743
+/// In a similar fashion to the [`Iterator`] protocol, once a
2744
+/// `DoubleEndedIterator` returns `None` from a `next_back()`, calling it again
2745
+/// may or may not ever return `Some` again. `next()` and `next_back()` are
2746
+/// interchangable for this purpose.
2747
+///
2748
/// [`Iterator`]: trait.Iterator.html
2749
2750
/// # Examples
2751
2752
/// Basic usage:
0 commit comments