diff options
| author | bors <bors@rust-lang.org> | 2015-05-19 03:41:23 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-05-19 03:41:23 +0000 |
| commit | eeaf2ba489e1c9b9d6d3e5f4566c3ecbdcaa14f2 (patch) | |
| tree | 6a609f0981b55919af7c0bf7d72ad2e63f4ac669 | |
| parent | 8dbc3699213965feb422ff9257111f2edb2fc9db (diff) | |
| parent | f894417e6b75f9eaa276414de525ea56418f2f68 (diff) | |
| download | rust-eeaf2ba489e1c9b9d6d3e5f4566c3ecbdcaa14f2.tar.gz rust-eeaf2ba489e1c9b9d6d3e5f4566c3ecbdcaa14f2.zip | |
Auto merge of #25496 - alexcrichton:stabilize-cloned, r=aturon
The method was stabilized but the structure was forgotten to be stabilized. Closes #25480
| -rw-r--r-- | src/libcore/iter.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/iter.rs b/src/libcore/iter.rs index cab79d938c3..091342226e0 100644 --- a/src/libcore/iter.rs +++ b/src/libcore/iter.rs @@ -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> { |
