about summary refs log tree commit diff
path: root/src/libcollections/hashmap.rs
AgeCommit message (Expand)AuthorLines
2014-06-05std: Recreate a `collections` moduleAlex Crichton-2498/+0
2014-06-04collections: optimize `HashMap`. Add `DefaultResizePolicy`.Piotr Czarnecki-72/+117
2014-06-01std: Drop Total from Total{Eq,Ord}Alex Crichton-26/+26
2014-05-30std: Rename {Eq,Ord} to Partial{Eq,Ord}Alex Crichton-9/+9
2014-05-30auto merge of #14524 : ahmedcharles/rust/to_string, r=alexcrichtonbors-2/+2
2014-05-29std: Recreate a `rand` moduleAlex Crichton-2/+2
2014-05-29Change to_owned() to to_string().Ahmed Charles-2/+2
2014-05-27auto merge of #14414 : richo/rust/features/nerf_unused_string_fns, r=alexcric...bors-5/+5
2014-05-27std: Remove String's to_ownedRicho Healey-5/+5
2014-05-27collections: add Show impl test for HashMapErick Tryzelaar-0/+14
2014-05-22Spelling/doc formatting fixes.Huon Wilson-1/+1
2014-05-15Updates with core::fmt changesAlex Crichton-8/+8
2014-05-16Work around parse error caused by #14240.Chris Morgan-2/+1
2014-05-15Use assertions in find_with_or_insert_with exampleChris Morgan-3/+4
2014-05-15Rename HashMap.mangle to find_with_or_insert_with.Chris Morgan-22/+24
2014-05-15Tidy up the HashMap.mangle example.Chris Morgan-8/+7
2014-05-15Reinstate HashMap.mangle().Chris Morgan-21/+57
2014-05-14Suppress warnings on 32bit platforms.OGINO Masanori-2/+2
2014-05-11hashmap: port to the new allocator APIDaniel Micay-17/+13
2014-05-10rename `global_heap` -> `libc_heap`Daniel Micay-2/+2
2014-05-07std: Modernize the local_data apiAlex Crichton-37/+33
2014-05-01Add debug_assert and debug_assert_eq macrosSteven Fackler-12/+6
2014-05-01remove leftover obsolete string literalsDaniel Micay-2/+2
2014-04-22auto merge of #13653 : jbcrail/rust/fix-comment-mistakes, r=alexcrichtonbors-4/+4
2014-04-21Just some general cleanup in the HashMap moduleClark Gaebel-112/+168
2014-04-21Fix misspellings in comments.Joseph Crail-4/+4
2014-04-19auto merge of #13614 : cgaebel/rust/master, r=brsonbors-30/+66
2014-04-18Replace all ~"" with "".to_owned()Richo Healey-5/+5
2014-04-18Reduce HashMap allocations.Clark Gaebel-30/+66
2014-04-15Add a default impl for Set::is_supersetSteven Fackler-15/+0
2014-04-11libtest: rename `BenchHarness` to `Bencher`Liigo Zhuang-6/+6
2014-04-10auto merge of #13440 : huonw/rust/strbuf, r=alexcrichtonbors-70/+119
2014-04-11Fix tests. Add Vec<u8> conversion to StrBuf.Huon Wilson-2/+10
2014-04-10libstd: Implement `StrBuf`, a new string buffer type like `Vec`, andPatrick Walton-70/+111
2014-04-09collections: replace all ~[T] with Vec<T>.Huon Wilson-11/+11
2014-04-04Fix fallout from std::libc separationCorey Richardson-1/+2
2014-04-02Fix fallout of requiring uint indicesAlex Crichton-9/+9
2014-03-31collections: Switch field privacy as necessaryAlex Crichton-23/+23
2014-03-30Rename `from_iterator` to `from_iter` for consistency.Brian Anderson-2/+2
2014-03-28Rename Pod into CopyFlavio Percoco-7/+7
2014-03-25Changed `iter::Extendable` and `iter::FromIterator` to take a `Iterator` by v...Marvin Löbel-6/+6
2014-03-23use TotalEq for HashMapDaniel Micay-30/+27
2014-03-20rename std::vec_ng -> std::vecDaniel Micay-3/+3
2014-03-20rename std::vec -> std::sliceDaniel Micay-2/+2
2014-03-14auto merge of #12867 : alexcrichton/rust/issue-12860, r=thestingerbors-31/+37
2014-03-13collections: Don't recurse in hashmap robin_hoodAlex Crichton-31/+37
2014-03-13collections: move hashmap's example to the struct.Huon Wilson-53/+53
2014-03-12Performance-oriented hashtable.Clark Gaebel-589/+1407
2014-03-12Update users for the std::rand -> librand move.Huon Wilson-2/+2
2014-03-06collections: Correct with_capacity_and_hasherAlex Crichton-10/+11