about summary refs log tree commit diff
path: root/src/libcollections
AgeCommit message (Expand)AuthorLines
2014-03-15log: Introduce liblog, the old std::loggingAlex Crichton-1/+2
2014-03-15Add rustdoc html crate infoSteven Fackler-0/+3
2014-03-14auto merge of #12867 : alexcrichton/rust/issue-12860, r=thestingerbors-31/+37
2014-03-14auto merge of #12864 : huonw/rust/hash-docs, r=alexcrichtonbors-53/+53
2014-03-14lint: add lint for use of a `~[T]`.Huon Wilson-0/+1
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-12auto merge of #12081 : cgaebel/rust/robinhood-hashing, r=alexcrichtonbors-589/+1407
2014-03-12Performance-oriented hashtable.Clark Gaebel-589/+1407
2014-03-12Use generic impls for `Hash`Erick Tryzelaar-4/+4
2014-03-12Update users for the std::rand -> librand move.Huon Wilson-10/+13
2014-03-07create a sensible comparison trait hierarchyDaniel Micay-1/+72
2014-03-06collections: Correct with_capacity_and_hasherAlex Crichton-10/+11
2014-03-06fix typos with with repeated words, just like this sentence.Kang Seonghoon-1/+1
2014-02-28std: Change assert_eq!() to use {} instead of {:?}Alex Crichton-19/+20
2014-02-28auto merge of #12544 : erickt/rust/hash, r=acrichtobors-82/+106
2014-02-27collections: allow `HashMap` to work with generic hashersErick Tryzelaar-82/+106
2014-02-27Replaced list::push() with unshift() based on List<T>Bruno de Oliveira Abinader-7/+13
2014-02-27Refactored list::append() to be based on List<T>Bruno de Oliveira Abinader-13/+13
2014-02-27Refactored list::tail() to be based on List<T>Bruno de Oliveira Abinader-12/+12
2014-02-27Refactored list::head() to be based on List<T>Bruno de Oliveira Abinader-16/+14
2014-02-27Replaced list::has() with list::contains()Bruno de Oliveira Abinader-14/+13
2014-02-27Removed deprecated list::{iter,each}() functionsBruno de Oliveira Abinader-28/+0
2014-02-27Implemented list::is_empty() based on Container traitBruno de Oliveira Abinader-15/+10
2014-02-27Implemented list::len() based on Container traitBruno de Oliveira Abinader-11/+12
2014-02-27Removed list::any() in favor of iter().any()Bruno de Oliveira Abinader-25/+7
2014-02-27Removed list::find() in favor of iter().find()Bruno de Oliveira Abinader-30/+11
2014-02-27Removed list::foldl() in favor of iter().fold()Bruno de Oliveira Abinader-33/+10
2014-02-27Implemented Items<'a, T> for List<T>Bruno de Oliveira Abinader-0/+46
2014-02-27Modified list::from_vec() to return List<T>Bruno de Oliveira Abinader-21/+26
2014-02-27Renamed variablesBruno de Oliveira Abinader-67/+65
2014-02-25auto merge of #12522 : erickt/rust/hash, r=alexcrichtonbors-1/+1
2014-02-24Remove std::default::Default from the preludeBrendan Zabarauskas-0/+1
2014-02-24std: minor whitespace cleanupErick Tryzelaar-1/+1
2014-02-24Move extra::json to libserializeAlex Crichton-245/+1
2014-02-24Remove deriving(ToStr)Alex Crichton-11/+11
2014-02-23Remove all ToStr impls, add Show implsAlex Crichton-52/+45
2014-02-24Transition to new `Hash`, removing IterBytes and std::to_bytes.Huon Wilson-23/+20
2014-02-23Move std::{trie, hashmap} to libcollectionsAlex Crichton-1/+2624
2014-02-21auto merge of #12415 : HeroesGrave/rust/move-enum-set, r=alexcrichtonbors-0/+296
2014-02-20move extra::test to libtestLiigo Zhuang-9/+13
2014-02-20move enum_set to libcollections. #8784HeroesGrave-0/+296
2014-02-17Improve naming of tuple getters, and add mutable tuple getterBrendan Zabarauskas-4/+4
2014-02-15auto merge of #12272 : alexcrichton/rust/snapshot, r=kballardbors-4/+3
2014-02-15std: clean up ptr a bitCorey Richardson-1/+1
2014-02-14extern mod => extern crateAlex Crichton-4/+3
2014-02-14return value/use extra::test::black_box in benchmarkslpy-1/+10
2014-02-13Removed num::OrderableMichael Darakananda-5/+4
2014-02-11Includes new add method that uses .clone() for support.Nif Ward-115/+385
2014-02-10auto merge of #11956 : edwardw/rust/issue-7556, r=cmrbors-8/+7