| Age | Commit message (Expand) | Author | Lines |
| 2017-01-16 | libcollections: btree/map: fix typos | Ivan Stankovic | -2/+2 |
| 2017-01-14 | update docs with new syntax | djzin | -6/+6 |
| 2017-01-14 | update docs with new syntax | djzin | -8/+12 |
| 2017-01-14 | fix warnings in doctests | djzin | -3/+2 |
| 2017-01-14 | simplify some ranges | djzin | -2/+2 |
| 2017-01-14 | add type annotations to doctest | djzin | -1/+1 |
| 2017-01-14 | use rangeargument for range_mut | djzin | -7/+6 |
| 2017-01-14 | fix up tests | djzin | -2/+2 |
| 2017-01-14 | change argument for btree_range | djzin | -5/+5 |
| 2017-01-13 | Change `to_owned` to `to_string` in docs | Stjepan Glavina | -2/+2 |
| 2016-12-28 | Replace uses of `#[unsafe_destructor_blind_to_params]` with `#[may_dangle]` | Andrew Paseltiner | -2/+1 |
| 2016-10-01 | std: Correct stability attributes for some implementations | Oliver Middleton | -0/+35 |
| 2016-09-11 | Documentation of what does for each type | athulappadan | -0/+1 |
| 2016-09-03 | Add missing urls | Guillaume Gomez | -4/+8 |
| 2016-08-23 | Auto merge of #35656 - Stebalien:fused, r=alexcrichton | bors | -1/+26 |
| 2016-08-19 | std: Stabilize APIs for the 1.12 release | Alex Crichton | -8/+11 |
| 2016-08-18 | Add a FusedIterator trait. | Steven Allen | -1/+26 |
| 2016-07-20 | Add doc for btree_map types | ggomez | -2/+189 |
| 2016-07-19 | Add debug for btree_map::{Entry, VacantEntry, OccupiedEntry} | Guillaume Gomez | -0/+33 |
| 2016-07-03 | std: Stabilize APIs for the 1.11.0 release | Alex Crichton | -7/+2 |
| 2016-06-15 | Map::Entry::take() method to recover key and value together | Sean McArthur | -0/+12 |
| 2016-06-10 | Update tracking issue for `{BTreeMap, BTreeSet}::{append, split_off}` | Andrew Paseltiner | -2/+2 |
| 2016-06-10 | Rollup merge of #34175 - rwz:patch-2, r=alexcrichton | Seo Sanghyeon | -1/+1 |
| 2016-06-08 | Fix BTreeMap example typo | Pavel Pravosud | -1/+1 |
| 2016-06-05 | run rustfmt on map.rs in libcollections/btree folder | Srinivas Reddy Thatiparthy | -220/+274 |
| 2016-06-01 | Implement split_off for BTreeMap and BTreeSet (RFC 509) | Andrey Tonkih | -2/+170 |
| 2016-05-24 | std: Stabilize APIs for the 1.10 release | Alex Crichton | -10/+9 |
| 2016-04-29 | Auto merge of #33148 - sfackler:entry-key, r=alexcrichton | bors | -0/+9 |
| 2016-04-22 | Implement `append` for b-trees. | Johannes Oertel | -24/+165 |
| 2016-04-21 | Add Entry::key | Steven Fackler | -0/+9 |
| 2016-04-01 | Implement `values_mut` on `BTreeMap`. | Corey Farwell | -0/+60 |
| 2016-03-15 | Use issue number from rust-lang/rust, not rust-lang/rfcs. | Stu Black | -2/+2 |
| 2016-03-14 | Expose the key of Entry variants for HashMap and BTreeMap. | Stu Black | -0/+13 |
| 2016-03-09 | collections: Fix broken doc example | Alex Crichton | -1/+1 |
| 2016-03-09 | Add missing "basic usage" sections to docs, fix review comments. | Nathan Kleyn | -1/+36 |
| 2016-03-08 | Add missing documentation examples for BTreeMap. | Nathan Kleyn | -0/+76 |
| 2016-02-23 | Register new snapshots | Aaron Turon | -2/+2 |
| 2016-02-15 | clarify how insert() doesn't update keys | Jack O'Connor | -3/+4 |
| 2016-01-22 | Document that BTreeMap iteration is in order | Matt Brubeck | -10/+10 |
| 2016-01-17 | Fix and test variance of BTreeMap and its companion structs. | Jonathan S | -9/+26 |
| 2016-01-16 | Rewrite BTreeMap to use parent pointers. | Jonathan S | -1214/+938 |
| 2016-01-14 | Require stability annotations on fields of tuple variants | Vadim Petrochenkov | -2/+6 |
| 2016-01-04 | Feature-gate defaulted type parameters outside of types. | Niko Matsakis | -8/+8 |
| 2015-12-10 | std: Remove deprecated functionality from 1.5 | Alex Crichton | -18/+5 |
| 2015-11-25 | Auto merge of #30017 - nrc:fmt, r=brson | bors | -157/+258 |
| 2015-11-24 | rustfmt libcollections | Nick Cameron | -157/+258 |
| 2015-11-20 | Rename #[deprecated] to #[rustc_deprecated] | Vadim Petrochenkov | -1/+1 |
| 2015-11-14 | docs: Clarify insertion behavior for maps | Vadim Petrochenkov | -2/+3 |
| 2015-11-06 | Remove stability annotations from trait impl items | Vadim Petrochenkov | -1/+0 |
| 2015-10-22 | Document replacement behavior in some collections | Steve Klabnik | -2/+8 |