Auto merge of #25496 - alexcrichton:stabilize-cloned, r=aturon

The method was stabilized but the structure was forgotten to be stabilized.

Closes #25480
This commit is contained in:
bors 2015-05-19 03:41:23 +00:00
commit eeaf2ba489

View File

@ -1370,7 +1370,7 @@ impl<T: Clone> MinMaxResult<T> {
}
/// An iterator that clones the elements of an underlying iterator
#[unstable(feature = "core", reason = "recent addition")]
#[stable(feature = "iter_cloned", since = "1.1.0")]
#[must_use = "iterator adaptors are lazy and do nothing unless consumed"]
#[derive(Clone)]
pub struct Cloned<I> {