1
Fork 0

Remove IteratorExt

All methods are inlined into Iterator with `Self: Sized` bounds to make
sure Iterator is still object safe.

[breaking-change]
This commit is contained in:
Steven Fackler 2015-03-11 22:41:24 -07:00
parent 3e7385aae9
commit d502f4221f
33 changed files with 130 additions and 129 deletions

View file

@ -16,7 +16,7 @@ use cmp;
use unicode::str as core_str;
use error as std_error;
use fmt;
use iter::{self, Iterator, IteratorExt, Extend};
use iter::{self, Iterator, Extend};
use marker::Sized;
use ops::{Drop, FnOnce};
use option::Option::{self, Some, None};