make way for a new iter module

This commit is contained in:
Daniel Micay
2013-04-24 20:35:49 -04:00
parent 9f03d45c56
commit 46f91a0fa9
42 changed files with 648 additions and 540 deletions

View File

@@ -34,9 +34,10 @@ pub use clone::Clone;
pub use cmp::{Eq, Ord, TotalEq, TotalOrd, Ordering, Less, Equal, Greater};
pub use container::{Container, Mutable, Map, Set};
pub use hash::Hash;
pub use iter::{BaseIter, ReverseIter, MutableIter, ExtendedIter, EqIter};
pub use iter::{CopyableIter, CopyableOrderedIter, CopyableNonstrictIter};
pub use iter::{Times, ExtendedMutableIter};
pub use old_iter::{BaseIter, ReverseIter, MutableIter, ExtendedIter, EqIter};
pub use old_iter::{CopyableIter, CopyableOrderedIter, CopyableNonstrictIter};
pub use old_iter::{ExtendedMutableIter};
pub use iter::Times;
pub use num::{Num, NumCast};
pub use num::{Orderable, Signed, Unsigned, Integer};
pub use num::{Round, Fractional, Real, RealExt};
@@ -79,6 +80,7 @@ pub use i8;
pub use int;
pub use io;
pub use iter;
pub use old_iter;
pub use libc;
pub use num;
pub use ops;