diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-04-30 21:41:03 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-05-07 08:14:56 -0700 |
| commit | b024ba544c8cf831423cdd24d2dc516d66dc6269 (patch) | |
| tree | 8a2a05ed5213f327388e7cffd54f6f3bf657d64f /src/libstd/lib.rs | |
| parent | 06fcb6b1c81f1f5190d431c169cd0c725fecf18e (diff) | |
| download | rust-b024ba544c8cf831423cdd24d2dc516d66dc6269.tar.gz rust-b024ba544c8cf831423cdd24d2dc516d66dc6269.zip | |
core: Inherit the iter module
Diffstat (limited to 'src/libstd/lib.rs')
| -rw-r--r-- | src/libstd/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index 64eff2c4762..63d86e43427 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -145,6 +145,7 @@ pub use core::clone; pub use core::container; pub use core::default; pub use core::intrinsics; +pub use core::iter; pub use core::mem; pub use core::option; pub use core::ptr; @@ -217,7 +218,6 @@ pub mod gc; pub mod from_str; pub mod num; -pub mod iter; pub mod to_str; pub mod hash; |
