| Age | Commit message (Expand) | Author | Lines |
| 2017-04-23 | Auto merge of #41437 - cuviper:remove-unstable-deprecated, r=alexcrichton | bors | -7/+0 |
| 2017-04-22 | Fix invalid linkage | Guillaume Gomez | -1/+1 |
| 2017-04-20 | Remove OccupiedEntry::remove_pair | Josh Stone | -7/+0 |
| 2017-04-18 | Fix a few stability attributes | Oliver Middleton | -0/+5 |
| 2017-04-13 | Various consistency and phrasing fixes in std::collections' docs | lukaramu | -5/+8 |
| 2017-04-13 | Update std::collections' docs to use iterator (etc.) boilerplate | lukaramu | -8/+56 |
| 2017-04-10 | Apply clippy's doc_markdown improvements to libcollections | Andre Bogus | -12/+12 |
| 2017-03-24 | Unnecessary iteration in BTreeMap::drop | Stepan Koltsov | -2/+1 |
| 2017-03-22 | Various fixes to wording consistency in the docs | Stjepan Glavina | -2/+2 |
| 2017-03-17 | Minor fixups to fix tidy errors | Alex Crichton | -0/+2 |
| 2017-03-17 | Stabilize btree_range, closes #27787 | Aaron Turon | -10/+2 |
| 2017-02-10 | Dont segfault if btree range is not in order | Brian Vincent | -113/+91 |
| 2017-02-05 | Replace PlaceBack Debug implementation with derive | Guillaume Gomez | -20/+8 |
| 2017-01-20 | Remove Debug implementations specialization | Guillaume Gomez | -56/+0 |
| 2017-01-20 | Add Debug implementations for libcollection structs | Guillaume Gomez | -0/+120 |
| 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 |