diff options
| author | Steven Fackler <sfackler@gmail.com> | 2015-03-11 22:41:24 -0700 |
|---|---|---|
| committer | Steven Fackler <sfackler@gmail.com> | 2015-03-28 13:53:45 -0700 |
| commit | d502f4221fd5472c4a7905cdc3c59533e9612822 (patch) | |
| tree | e9cc2523cb637e3c143be0a2433700ff8942bbbb /src/libstd/prelude | |
| parent | 3e7385aae9d58c8e12137d7c07aad48551048c13 (diff) | |
| download | rust-d502f4221fd5472c4a7905cdc3c59533e9612822.tar.gz rust-d502f4221fd5472c4a7905cdc3c59533e9612822.zip | |
Remove IteratorExt
All methods are inlined into Iterator with `Self: Sized` bounds to make sure Iterator is still object safe. [breaking-change]
Diffstat (limited to 'src/libstd/prelude')
| -rw-r--r-- | src/libstd/prelude/v1.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/prelude/v1.rs b/src/libstd/prelude/v1.rs index 6e12ac1a226..611dd85a71b 100644 --- a/src/libstd/prelude/v1.rs +++ b/src/libstd/prelude/v1.rs @@ -36,7 +36,7 @@ #[stable(feature = "rust1", since = "1.0.0")] #[doc(no_inline)] pub use iter::ExactSizeIterator; #[stable(feature = "rust1", since = "1.0.0")] -#[doc(no_inline)] pub use iter::{Iterator, IteratorExt, Extend}; +#[doc(no_inline)] pub use iter::{Iterator, Extend}; #[stable(feature = "rust1", since = "1.0.0")] #[doc(no_inline)] pub use option::Option::{self, Some, None}; #[stable(feature = "rust1", since = "1.0.0")] |
