about summary refs log tree commit diff
path: root/src/libcollections/trie.rs
AgeCommit message (Expand)AuthorLines
2014-11-02refactor libcollections as part of collection reformAlexis Beingessner-1899/+0
2014-11-01collections: Remove all collections traitsAlex Crichton-116/+364
2014-10-30collections: Enable IndexMut for some collectionsAlex Crichton-3/+2
2014-10-29Rename fail! to panic!Steve Klabnik-3/+3
2014-10-19Remove a large amount of deprecated functionalityAlex Crichton-18/+0
2014-10-11auto merge of #17801 : Gankro/rust/collections-stuff, r=sfacklerbors-16/+24
2014-10-10Register new snapshotsAlex Crichton-18/+0
2014-10-09collections: Convert statics to constantsAlex Crichton-4/+4
2014-10-07Rename slicing methodsNick Cameron-0/+18
2014-10-07Use slice syntax instead of slice_to, etc.Nick Cameron-3/+4
2014-10-05adding iterator benches to tree-based maps for comparison purposesAlexis Beingessner-16/+24
2014-10-02Revert "Use slice syntax instead of slice_to, etc."Aaron Turon-4/+3
2014-10-02Revert "Remove the `_` suffix from slice methods."Aaron Turon-18/+0
2014-10-02Remove the `_` suffix from slice methods.Nick Cameron-0/+18
2014-10-02Use slice syntax instead of slice_to, etc.Nick Cameron-3/+4
2014-09-22Update calls of deprecated functions in macros.Victor Berger-2/+2
2014-09-16Fallout from renamingAaron Turon-18/+18
2014-09-16Align with _mut conventionsAaron Turon-6/+24
2014-09-13Move info into individual modules.Steve Klabnik-2/+7
2014-08-29Register new snapshotsAlex Crichton-20/+0
2014-08-27Implement generalized object and type parameter bounds (Fixes #16462)Niko Matsakis-2/+22
2014-08-19A few minor documentation fixesP1start-32/+32
2014-08-16librustc: Forbid external crates, imports, and/or items from beingPatrick Walton-1/+1
2014-08-13core: Rename ImmutableSlice::unsafe_ref to unsafe_getBrian Anderson-1/+1
2014-08-12Implement Index for TrieMapP1start-0/+38
2014-07-30Library changes for RFC #43Cameron Zwarich-7/+13
2014-07-28Implement Ord for TrieMap/TrieSet/SmallIntMap/Bitv/BitvSetnham-1/+8
2014-07-27Implement PartialOrd for TrieMap and TrieSetnham-1/+72
2014-07-26Small fixes for testsnham-1/+1
2014-07-25Implement PartialEq/Eq/Clone/Hash/FromIterator/Extendable for SmallIntMap and...nham-1/+94
2014-07-25Add methods for obtaining iterators over the keys and values of a TrieMapnham-0/+43
2014-07-24Main examples for TrieSet and TrieMap.Jonas Hietala-2/+67
2014-07-24Document TrieSet and TrieMap methods.Jonas Hietala-16/+191
2014-07-23Remove kludgy imports from vec! macroBrian Anderson-2/+2
2014-07-22Implement PartialEq, Eq for TrieMap, TrieSetnham-18/+46
2014-07-22Derive Hash for TrieMap and TrieSetnham-0/+27
2014-07-13Stabilization for `owned` (now `boxed`) and `cell`Aaron Turon-1/+1
2014-06-28Rename all raw pointers as necessaryAlex Crichton-2/+7
2014-06-24librustc: Remove the fallback to `int` from typechecking.Niko Matsakis-18/+18
2014-06-09collections: Add missing Default implsTom Jakubowski-0/+11
2014-06-09core: Move the collections traits to libcollectionsAlex Crichton-0/+4
2014-06-08core: Rename `container` mod to `collections`. Closes #12543Brian Anderson-2/+2
2014-06-05Fallout from the libcollections movementAlex Crichton-5/+10
2014-06-05std: Recreate a `collections` moduleAlex Crichton-6/+10
2014-05-29std: Recreate a `rand` moduleAlex Crichton-1/+1
2014-05-20core: Stabilize the mem moduleAlex Crichton-4/+7
2014-05-16rustc: Stop leaking enum variants into childrenAlex Crichton-1/+1
2014-05-06librustc: Remove `~EXPR`, `~TYPE`, and `~PAT` from the language, exceptPatrick Walton-4/+4
2014-05-02Replace most ~exprs with 'box'. #11779Brian Anderson-1/+1
2014-04-28Deprecate the rev_iter pattern in all places where a DoubleEndedIterator is p...Jonathan S-1/+1