]> git.lizzy.rs Git - rust.git/commit
auto merge of #12428 : alexcrichton/rust/move-hashmap, r=brson
authorbors <bors@rust-lang.org>
Sun, 23 Feb 2014 09:06:57 +0000 (01:06 -0800)
committerbors <bors@rust-lang.org>
Sun, 23 Feb 2014 09:06:57 +0000 (01:06 -0800)
commitc250c16f81f82a21295e421be7bd47c91d64cb2a
tree78090dacffcdda10a36a6e538f3f73d3d3a6e35c
parentedf351e9f7d17777b1385093bfa7b6654e662d44
parent2a14e084cfd8cf9a9149d0b7c6329b0dad0521d0
auto merge of #12428 : alexcrichton/rust/move-hashmap, r=brson

These two containers are indeed collections, so there place is in
libcollections, not in libstd. There will always be a hash map as part of the
standard distribution of Rust, but by moving it out of the standard library it
makes libstd that much more portable to more platforms and environments.

This conveniently also removes the stuttering of 'std::hashmap::HashMap',
although 'collections::HashMap' is only one character shorter.