Move hash module from collections to core

This commit is contained in:
Steven Fackler 2014-12-12 18:43:07 -08:00
parent b497f05008
commit 24a8ef63ff
18 changed files with 433 additions and 172 deletions

View file

@ -17,13 +17,13 @@ use core::prelude::*;
use core::borrow::{Cow, IntoCow};
use core::default::Default;
use core::fmt;
use core::hash;
use core::mem;
use core::ptr;
use core::ops;
// FIXME: ICE's abound if you import the `Slice` type while importing `Slice` trait
use core::raw::Slice as RawSlice;
use hash;
use slice::CloneSliceExt;
use str;
use str::{CharRange, CowString, FromStr, StrAllocating, Owned};