| Age | Commit message (Expand) | Author | Lines |
| 2016-01-17 | Fix and test variance of BTreeMap and its companion structs. | Jonathan S | -8/+13 |
| 2016-01-16 | Rewrite BTreeMap to use parent pointers. | Jonathan S | -1377/+865 |
| 2015-12-18 | Fix the fallout | Vadim Petrochenkov | -6/+6 |
| 2015-12-17 | Remove unused imports | Jeffrey Seyfried | -1/+1 |
| 2015-11-24 | rustfmt libcollections | Nick Cameron | -168/+165 |
| 2015-11-18 | Add missing annotations and some tests | Vadim Petrochenkov | -1/+0 |
| 2015-10-13 | Correct spelling in docs | Andrew Paseltiner | -1/+1 |
| 2015-10-06 | Add RFC 1238's `unsafe_destructor_blind_to_params` (UGEH) where needed. | Felix S. Klock II | -0/+3 |
| 2015-09-30 | Auto merge of #28731 - bluss:by-ref, r=alexcrichton | bors | -1/+1 |
| 2015-09-29 | Remove redundant uses of Iterator::by_ref() | Ulrik Sverdrup | -1/+1 |
| 2015-09-18 | Avoid zero-sized leaf allocations in `BTreeMap` | Andrew Paseltiner | -1/+6 |
| 2015-09-03 | Use `null()`/`null_mut()` instead of `0 as *const T`/`0 as *mut T` | Vadim Petrochenkov | -1/+1 |
| 2015-08-18 | Auto merge of #27624 - apasel422:issue-27620, r=Gankro | bors | -2/+23 |
| 2015-08-11 | Register new snapshots | Alex Crichton | -3/+0 |
| 2015-08-10 | Remove transmute from `btree::node::Node::as_slices_internal_mut` | Andrew Paseltiner | -2/+23 |
| 2015-08-09 | Change TODO to FIXME | Tobias Bucher | -1/+1 |
| 2015-08-09 | Replace many uses of `mem::transmute` with more specific functions | Tobias Bucher | -6/+7 |
| 2015-08-05 | Fully generalize `BTree{Map, Set}` range iterators | Andrew Paseltiner | -2/+6 |
| 2015-08-03 | syntax: Implement #![no_core] | Alex Crichton | -1/+2 |
| 2015-06-24 | Make `align_of` behave like `min_align_of`. | Huon Wilson | -5/+5 |
| 2015-05-27 | Remove #[cfg(stage0)] items. | Eduard Burtescu | -67/+0 |
| 2015-05-15 | Allow for better optimizations of iterators for zero-sized types | Björn Steinbrink | -0/+68 |
| 2015-04-28 | Register new snapshots | Tamir Duberstein | -3/+0 |
| 2015-04-14 | Fill in missing implementation | Tamir Duberstein | -0/+3 |
| 2015-04-14 | Negative case of `len()` -> `is_empty()` | Tamir Duberstein | -1/+1 |
| 2015-04-14 | Positive case of `len()` -> `is_empty()` | Tamir Duberstein | -1/+1 |
| 2015-04-01 | Fallout in public-facing and semi-public-facing libs | Niko Matsakis | -1/+1 |
| 2015-03-30 | std: Standardize (input, output) param orderings | Alex Crichton | -12/+12 |
| 2015-03-27 | rollup merge of #23738: alexcrichton/snapshots | Alex Crichton | -61/+0 |
| 2015-03-26 | Register new snapshots | Alex Crichton | -61/+0 |
| 2015-03-26 | Switch drop-flag to `u8` to allow special tags to instrument state. | Felix S. Klock II | -2/+4 |
| 2015-03-23 | rollup merge of #23604: apasel422/btree | Alex Crichton | -0/+2 |
| 2015-03-23 | Fallout in stdlib, rustdoc, rustc, etc. For most maps, converted uses of | Niko Matsakis | -0/+61 |
| 2015-03-21 | implement `Clone` for `btree` iterators | Andrew Paseltiner | -0/+2 |
| 2015-03-18 | Register new snapshots | Alex Crichton | -3/+0 |
| 2015-03-16 | impl {i,u}{8,16,32,64,size} | Jorge Aparicio | -2/+5 |
| 2015-03-13 | slice::from_raw_parts is preferred over transmuting a fresh raw::Slice | Oliver Schneider | -8/+2 |
| 2015-03-03 | Fixes to collections to accommodate arith-overflow changes. | Felix S. Klock II | -1/+2 |
| 2015-02-26 | Send/Sync audit for libcollections | Edward Wang | -5/+8 |
| 2015-02-24 | std: Stabilize some `ptr` functions | Alex Crichton | -12/+12 |
| 2015-02-18 | rollup merge of #22286: nikomatsakis/variance-4b | Alex Crichton | -32/+52 |
| 2015-02-18 | Stabilize std::borrow | Aaron Turon | -4/+5 |
| 2015-02-18 | Fallout: port btree to use Unique, some markers. | Niko Matsakis | -32/+52 |
| 2015-02-11 | Add core::marker::PhantomData. | Felix S. Klock II | -8/+8 |
| 2015-02-06 | Rollup merge of #21969 - Gankro:collections-cleanup, r=alexcrichton | Manish Goregaokar | -61/+61 |
| 2015-02-05 | misc collections code cleanup | Alexis | -61/+61 |
| 2015-02-04 | Fix for misspelled comments. | Joseph Crail | -1/+1 |
| 2015-02-02 | `for x in xs.iter()` -> `for x in &xs` | Jorge Aparicio | -3/+3 |
| 2015-01-30 | fix fallout | Jorge Aparicio | -4/+4 |
| 2015-01-29 | `for x in range(a, b)` -> `for x in a..b` | Jorge Aparicio | -1/+1 |