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

@@ -121,6 +121,7 @@ pub mod simd;
pub mod slice;
pub mod str;
pub mod tuple;
pub mod hash;
// FIXME #15320: primitive documentation needs top-level modules, this
// should be `core::tuple::unit`.
#[path = "tuple/unit.rs"]
@@ -142,4 +143,5 @@ mod std {
pub use kinds;
pub use option;
pub use fmt;
pub use hash;
}