Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move std::{trie, hashmap} to libcollections #12428

Merged
merged 1 commit into from
Feb 23, 2014

Commits on Feb 23, 2014

  1. Move std::{trie, hashmap} to libcollections

    These two containers are indeed collections, so their 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.
    alexcrichton committed Feb 23, 2014
    5 Configuration menu
    Copy the full SHA
    2a14e08 View commit details
    Browse the repository at this point in the history