summary refs log tree commit diff
path: root/src/libcore/collections.rs
AgeCommit message (Collapse)AuthorLines
2014-07-19Document some trait methods.Jonas Hietala-0/+14
2014-06-09core: Move the collections traits to libcollectionsAlex Crichton-85/+1
This commit moves Mutable, Map, MutableMap, Set, and MutableSet from `core::collections` to the `collections` crate at the top-level. Additionally, this removes the `deque` module and moves the `Deque` trait to only being available at the top-level of the collections crate. All functionality continues to be reexported through `std::collections`. [breaking-change]
2014-06-08core: Rename `container` mod to `collections`. Closes #12543Brian Anderson-0/+108
Also renames the `Container` trait to `Collection`. [breaking-change]