add IteratorUtil to the prelude

This commit is contained in:
Daniel Micay 2013-06-11 23:54:05 -04:00
parent 38e05747b5
commit 585f5f7f79
115 changed files with 6 additions and 174 deletions

View file

@ -17,7 +17,6 @@ pub use target::{OutputType, Main, Lib, Test, Bench, Target, Build, Install};
use core::libc::consts::os::posix88::{S_IRUSR, S_IWUSR, S_IXUSR};
use core::os::mkdir_recursive;
use core::os;
use core::iterator::IteratorUtil;
/// Returns the value of RUST_PATH, as a list
/// of Paths. In general this should be read from the

View file

@ -29,7 +29,6 @@ extern mod syntax;
use core::prelude::*;
use core::*;
use core::iterator::IteratorUtil;
pub use core::path::Path;
use core::hashmap::HashMap;
use rustc::driver::{driver, session};

View file

@ -15,7 +15,6 @@ extern mod std;
use extra::semver;
use core::prelude::*;
use core::iterator::IteratorUtil;
use core::{char, os, result, run, str};
use package_path::RemotePath;
use extra::tempfile::mkdtemp;