rename std::iterator
to std::iter
The trait will keep the `Iterator` naming, but a more concise module name makes using the free functions less verbose. The module will define iterables in addition to iterators, as it deals with iteration in general.
This commit is contained in:
parent
dd5c7379e9
commit
6919cf5fe1
48 changed files with 89 additions and 95 deletions
|
@ -18,7 +18,7 @@ use cast;
|
|||
use container::Container;
|
||||
use io;
|
||||
use io::Writer;
|
||||
use iterator::Iterator;
|
||||
use iter::Iterator;
|
||||
use option::{None, Option, Some};
|
||||
use str::{Str, StrSlice};
|
||||
use vec::{Vector, ImmutableVector};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue