| Age | Commit message (Expand) | Author | Lines |
| 2017-03-17 | Stabilize rc_raw feature, closes #37197 | Aaron Turon | -1/+1 |
| 2017-03-10 | Rollup merge of #40423 - DirkyJerky:patch-2, r=BurntSushi | Alex Crichton | -1/+1 |
| 2017-03-10 | Clarify docs in `VecDeque::resize` | Geoff Yoerger | -1/+1 |
| 2017-03-09 | Implement placement-in protocol for and `VecDeque` | Charlie Fan | -25/+160 |
| 2017-02-07 | Auto merge of #39002 - GuillaumeGomez:debug_libcollections, r=aturon | bors | -0/+36 |
| 2017-02-05 | Replace PlaceBack Debug implementation with derive | Guillaume Gomez | -8/+8 |
| 2017-01-28 | Implement `PartialEq<&[A]>` for `VecDeque<A>`. | Corey Farwell | -36/+74 |
| 2017-01-25 | std: Stabilize APIs for the 1.16.0 release | Alex Crichton | -10/+2 |
| 2017-01-20 | Remove Debug implementations specialization | Guillaume Gomez | -28/+0 |
| 2017-01-20 | Add Debug implementations for libcollection structs | Guillaume Gomez | -0/+64 |
| 2017-01-14 | have RangeArgument return a Bound<&T> from each of its methods | djzin | -2/+11 |
| 2017-01-10 | Rollup merge of #38664 - apasel422:may-dangle, r=pnkfelix | Seo Sanghyeon | -2/+1 |
| 2017-01-09 | Auto merge of #38581 - frewsxcv:vecdequeue-insert, r=GuillaumeGomez | bors | -8/+12 |
| 2016-12-28 | Replace uses of `#[unsafe_destructor_blind_to_params]` with `#[may_dangle]` | Andrew Paseltiner | -2/+1 |
| 2016-12-26 | Clarify behavior of `VecDeque::insert`. | Corey Farwell | -8/+12 |
| 2016-12-20 | run rustfmt on libcollections folder | Srinivas Reddy Thatiparthy | -48/+35 |
| 2016-12-04 | collections: Simplify VecDeque::is_empty | Ulrik Sverdrup | -4/+16 |
| 2016-10-25 | Special case .fold() for VecDeque's iterators | Ulrik Sverdrup | -20/+54 |
| 2016-10-01 | std: Correct stability attributes for some implementations | Oliver Middleton | -4/+4 |
| 2016-09-23 | Minor `VecDeque` doc examples cleanup. | Corey Farwell | -5/+5 |
| 2016-09-11 | Documentation for default types modified | athulappadan | -1/+1 |
| 2016-09-11 | Documentation of what does for each type | athulappadan | -0/+1 |
| 2016-08-24 | Remove needless imports in `libcollections`. | Jeffrey Seyfried | -3/+0 |
| 2016-08-23 | Auto merge of #35656 - Stebalien:fused, r=alexcrichton | bors | -1/+14 |
| 2016-08-19 | std: Stabilize APIs for the 1.12 release | Alex Crichton | -4/+1 |
| 2016-08-18 | Add a FusedIterator trait. | Steven Allen | -1/+14 |
| 2016-08-04 | Made vec_deque::Drain, hash_map::Drain, and hash_set::Drain covariant | Thomas Garcia | -3/+4 |
| 2016-07-22 | Update VecDeque documentation to specify direction of index 0 (#34920) | abhi | -0/+16 |
| 2016-07-16 | Add examples for VecDeque | Guillaume Gomez | -1/+71 |
| 2016-04-20 | Auto merge of #32951 - LukasKalbertodt:collection_contains_rfc1552, r=brson | bors | -0/+11 |
| 2016-04-18 | Added From<VecDeque<T>> for Vec<T> and From<Vec<T>> for VecDeque<T> | David Hewitt | -0/+179 |
| 2016-04-14 | Add `contains` to `VecDeque` and `LinkedList` (+ tests) | Lukas Kalbertodt | -0/+11 |
| 2016-03-28 | style: Use `iter` for IntoIterator parameter names | Kamal Marhubi | -2/+2 |
| 2016-03-02 | Use ptr::drop_in_place in VecDeque::drop | Ulrik Sverdrup | -1/+6 |
| 2016-01-27 | collections: Use slices parts in PartialEq for VecDeque | Ulrik Sverdrup | -1/+33 |
| 2016-01-27 | collections: Hash VecDeque in its slice parts | Ulrik Sverdrup | -3/+3 |
| 2016-01-18 | Auto merge of #30956 - KiChjang:move-tests-to-libcollectionstest, r=bluss | bors | -30/+0 |
| 2016-01-17 | Move zst test from libcollections to src/test | Keith Yeung | -30/+0 |
| 2016-01-16 | std: Stabilize APIs for the 1.7 release | Alex Crichton | -2/+4 |
| 2015-12-18 | Auto merge of #30272 - tshepang:doc-drain, r=bluss | bors | -7/+11 |
| 2015-12-17 | doc: improve drain examples and remove secondary info from leading paragraph | Tshepang Lekhonkhobe | -7/+11 |
| 2015-12-10 | std: Remove deprecated functionality from 1.5 | Alex Crichton | -20/+2 |
| 2015-12-05 | std: Stabilize APIs for the 1.6 release | Alex Crichton | -10/+4 |
| 2015-11-25 | Auto merge of #30017 - nrc:fmt, r=brson | bors | -307/+394 |
| 2015-11-24 | rustfmt libcollections | Nick Cameron | -307/+394 |
| 2015-11-20 | Rename #[deprecated] to #[rustc_deprecated] | Vadim Petrochenkov | -2/+2 |
| 2015-11-18 | Add missing annotations and some tests | Vadim Petrochenkov | -0/+3 |
| 2015-11-03 | Correct incorrect assertion in VecDeque::wrap_copy | Michael Layzell | -7/+9 |
| 2015-10-25 | std: Stabilize library APIs for 1.5 | Alex Crichton | -37/+36 |
| 2015-10-20 | Auto merge of #27723 - mystor:vecdeque_drain_range, r=bluss | bors | -14/+274 |