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/libcore/num | |
| 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/libcore/num')
| -rw-r--r-- | src/libcore/num/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/num/mod.rs b/src/libcore/num/mod.rs index 745a1213ad5..dc98bb8e603 100644 --- a/src/libcore/num/mod.rs +++ b/src/libcore/num/mod.rs @@ -23,7 +23,7 @@ use cmp::{PartialEq, Eq, PartialOrd, Ord}; use error::Error; use fmt; use intrinsics; -use iter::IteratorExt; +use iter::Iterator; use marker::Copy; use mem::size_of; use ops::{Add, Sub, Mul, Div, Rem, Neg}; |
