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.
2 parents 3975af5 + ccb1e46 commit a09b139Copy full SHA for a09b139
src/libcore/iter.rs
@@ -110,6 +110,7 @@ pub trait FromIterator<A> {
110
#[stable]
111
pub trait Extend<A> {
112
/// Extend a container with the elements yielded by an arbitrary iterator
113
+ #[stable]
114
fn extend<T: Iterator<Item=A>>(&mut self, iterator: T);
115
}
116
@@ -965,6 +966,7 @@ impl<I> IteratorExt for I where I: Iterator {}
965
966
967
pub trait DoubleEndedIterator: Iterator {
968
/// Yield an element from the end of the range, returning `None` if the range is empty.
969
970
fn next_back(&mut self) -> Option<Self::Item>;
971
972
0 commit comments