| Age | Commit message (Expand) | Author | Lines |
| 2014-12-15 | auto merge of #19448 : japaric/rust/binops-by-value, r=nikomatsakis | bors | -9/+372 |
| 2014-12-15 | Remove internal uses of `marker::NoCopy` | Jorge Aparicio | -6/+0 |
| 2014-12-15 | Remove all shadowed lifetimes. | Niko Matsakis | -3/+3 |
| 2014-12-15 | rollup merge of #19802: jbranchaud/add-btreeset-new-doctest | Brian Anderson | -0/+8 |
| 2014-12-15 | rollup merge of #19771: jbranchaud/add-btreeset-iter-doctests | Brian Anderson | -0/+26 |
| 2014-12-15 | rollup merge of #19710: steveklabnik/gh15449 | Brian Anderson | -2/+2 |
| 2014-12-15 | Standardize some usages of "which" in docstrings | Andrew Wagner | -1/+1 |
| 2014-12-14 | std: Collapse SlicePrelude traits | Alex Crichton | -29/+695 |
| 2014-12-14 | Mostly rote conversion of `proc()` to `move||` (and occasionally `Thunk::new`) | Niko Matsakis | -1/+1 |
| 2014-12-13 | Change `VecMap`'s iterators to use wrapper structs instead of typedefs. | Chase Southwood | -14/+45 |
| 2014-12-13 | libcollections: convert `BTreeSet` binops to by value | Jorge Aparicio | -0/+96 |
| 2014-12-13 | libcollections: convert `TreeSet` binops to by value | Jorge Aparicio | -4/+100 |
| 2014-12-13 | libcollections: convert `TrieSet` binops to by value | Jorge Aparicio | -4/+100 |
| 2014-12-13 | libcollections: add commutative version of `Vec`/`String` addition | Jorge Aparicio | -0/+17 |
| 2014-12-13 | libcollections: fix unit tests | Jorge Aparicio | -1/+1 |
| 2014-12-13 | libcollections: make `EnumSet` binops by value | Jorge Aparicio | -0/+36 |
| 2014-12-13 | libcollections: String + &str | Jorge Aparicio | -0/+10 |
| 2014-12-13 | libcollections: Vec<T> + &[T] | Jorge Aparicio | -0/+12 |
| 2014-12-13 | libcollections: use tuple indexing | Jorge Aparicio | -3/+3 |
| 2014-12-13 | libcollections: use unboxed closures | Jorge Aparicio | -12/+32 |
| 2014-12-13 | libcollections: use unboxed closures in `VecMap` methods | Jorge Aparicio | -7/+6 |
| 2014-12-13 | libcollections: use unboxed closures in `[Clone]SliceAllocPrelude` methods | Jorge Aparicio | -6/+7 |
| 2014-12-13 | libcollections: use unboxed closures in `DList` methods | Jorge Aparicio | -11/+9 |
| 2014-12-13 | libcollections: use unboxed closures in `Vec` methods | Jorge Aparicio | -6/+6 |
| 2014-12-13 | libcollections: use unboxed closures in `Bitv` methods | Jorge Aparicio | -8/+16 |
| 2014-12-13 | libcollections: use unboxed closures in `TreeMap` methods | Jorge Aparicio | -6/+16 |
| 2014-12-13 | libcollections: fix fallout in unit tests | Jorge Aparicio | -12/+12 |
| 2014-12-13 | libcollections: fix unit tests | Jorge Aparicio | -27/+54 |
| 2014-12-13 | libcollections: fix fallout | Jorge Aparicio | -5/+10 |
| 2014-12-13 | libcollections: fix fallout | Jorge Aparicio | -22/+43 |
| 2014-12-13 | auto merge of #19685 : jbranchaud/rust/add-btreemap-iter-doctests, r=Gankro | bors | -0/+33 |
| 2014-12-13 | auto merge of #19671 : tbu-/rust/pr_doc_removetraitrefs, r=Gankro | bors | -9/+8 |
| 2014-12-12 | Make BTree's Handle system more generic and more powerful, removing some runt... | Jonathan S | -298/+259 |
| 2014-12-12 | Add a doctest for BTreeSet::new. | jbranchaud | -0/+8 |
| 2014-12-12 | auto merge of #19569 : murphm8/rust/ring_buf_insert, r=Gankro | bors | -1/+267 |
| 2014-12-12 | auto merge of #18028 : gereeter/rust/slimmer-btree-node, r=Gankro | bors | -493/+1476 |
| 2014-12-12 | Slimmify BTree by replacing its internal Node type, which previously…held t... | Jonathan S | -493/+1476 |
| 2014-12-12 | Add doctests for `iter` and `into_iter` for BTreeSet. | jbranchaud | -0/+26 |
| 2014-12-11 | Implement insert for RingBuf | Matt Murphy | -1/+267 |
| 2014-12-12 | auto merge of #19514 : jbranchaud/rust/add-btree-set-bitor, r=Gankro | bors | -1/+84 |
| 2014-12-11 | Add an implementation of the BitOps for BTreeSets. | jbranchaud | -1/+84 |
| 2014-12-11 | auto merge of #19672 : alexcrichton/rust/snapshots, r=brson | bors | -308/+432 |
| 2014-12-11 | Register new snapshots | Alex Crichton | -308/+432 |
| 2014-12-11 | auto merge of #19377 : tbu-/rust/pr_mapinplace_fixzerosized_test, r=sfackler | bors | -0/+29 |
| 2014-12-10 | Fix inappropriate ## headings | Steve Klabnik | -2/+2 |
| 2014-12-10 | auto merge of #19663 : tbu-/rust/pr_fix_vecmap, r=Gankro | bors | -35/+53 |
| 2014-12-10 | auto merge of #19655 : jbranchaud/rust/change-example-to-examples, r=stevekla... | bors | -283/+286 |
| 2014-12-10 | Remove references to traits that no longer exist | Tobias Bucher | -9/+8 |
| 2014-12-10 | auto merge of #19628 : jbranchaud/rust/add-string-as-string-doctest, r=stevek... | bors | -0/+13 |
| 2014-12-09 | Add doctests for `iter_mut` and `into_iter` of BTreeMap. | jbranchaud | -0/+33 |