| Age | Commit message (Expand) | Author | Lines |
| 2022-02-19 | Collections: improve the documentation of drain members | Stein Somers | -8/+12 |
| 2022-02-17 | Rollup merge of #89869 - kpreid:from-doc, r=yaahc | Matthias Krüger | -0/+2 |
| 2022-02-14 | Describe VecDeque with more consistent names | Stein Somers | -110/+110 |
| 2022-01-18 | Replace iterator-based construction of collections by `Into<T>` | Júnior Bassani | -15/+15 |
| 2022-01-09 | eplace usages of vec![].into_iter with [].into_iter | Lucas Kent | -8/+8 |
| 2021-12-12 | doc: fix typo in comments | japm48 | -6/+6 |
| 2021-12-05 | doc: suggest try_reserve in try_reserve_exact | TennyZhuang | -2/+2 |
| 2021-12-05 | Rollup merge of #91215 - GuillaumeGomez:vec-deque-retain-mut, r=m-ou-se | Matthias Krüger | -3/+34 |
| 2021-12-04 | Add documentation to more `From::from` implementations. | Kevin Reid | -0/+2 |
| 2021-11-29 | Remove unnecessary check in VecDeque::grow | Cédric Barreteau | -9/+11 |
| 2021-11-25 | Implement VecDeque::retain_mut | Guillaume Gomez | -3/+34 |
| 2021-10-18 | Avoid overflow in `VecDeque::with_capacity_in()`. | Hans Kratz | -1/+1 |
| 2021-10-15 | Auto merge of #88717 - tabokie:vecdeque-fast-append, r=m-ou-se | bors | -2/+30 |
| 2021-10-10 | Add #[must_use] to alloc constructors | John Kugelman | -0/+2 |
| 2021-10-06 | Rollup merge of #89245 - DeveloperC286:iter_mut_fields_to_private, r=joshtrip... | Manish Goregaokar | -16/+21 |
| 2021-10-05 | refactor: VecDeques IterMut fields to private | DeveloperC | -16/+21 |
| 2021-10-05 | refactor: VecDeques Drain fields to private | DeveloperC286 | -17/+26 |
| 2021-10-04 | Rollup merge of #89244 - DeveloperC286:pair_slices_fields_to_private, r=josht... | Manish Goregaokar | -4/+4 |
| 2021-10-04 | Rollup merge of #87993 - kornelski:try_reserve_stable, r=joshtriplett | Jubilee | -4/+2 |
| 2021-10-04 | Rollup merge of #88452 - xu-cheng:vecdeque-from-array, r=m-ou-se | Jubilee | -1/+41 |
| 2021-10-04 | Stabilize try_reserve | Kornel | -4/+2 |
| 2021-10-04 | Update outdated comment | Xinye Tao | -1/+1 |
| 2021-10-02 | Make diangostic item names consistent | Cameron Steffen | -1/+1 |
| 2021-09-26 | Auto merge of #89144 - sexxi-goose:insig_stdlib, r=nikomatsakis | bors | -0/+1 |
| 2021-09-25 | Rollup merge of #89010 - est31:intra_doc_links, r=m-ou-se | Manish Goregaokar | -1/+2 |
| 2021-09-25 | refactor: VecDeques PairSlices fields to private | DeveloperC | -4/+4 |
| 2021-09-22 | PR fixup | Aman Arora | -1/+1 |
| 2021-09-21 | 2229: Annotate stdlib with insignficant dtors | Aman Arora | -0/+1 |
| 2021-09-17 | refactor: VecDeques IntoIter fields to private | DeveloperC286 | -2/+8 |
| 2021-09-16 | Add IntoIterator intra doc link to various collections | est31 | -1/+2 |
| 2021-09-08 | rearrange to be panic safe | tabokie | -10/+12 |
| 2021-09-07 | Optimize VecDeque::append | tabokie | -2/+28 |
| 2021-08-28 | VecDeque: improve performance for From<[T; N]> | Cheng XU | -1/+41 |
| 2021-08-16 | Remove extra empty lines | Xuanwo | -2/+0 |
| 2021-08-16 | Optimize unnecessary check in VecDeque::retain | Xuanwo | -8/+59 |
| 2021-08-08 | Auto merge of #86879 - YohDeadfall:stabilize-vec-shrink-to, r=dtolnay | bors | -2/+1 |
| 2021-08-08 | Bump shrink_to stabilization to Rust 1.56 | David Tolnay | -1/+1 |
| 2021-08-07 | Auto merge of #87408 - kornelski:try_reserve_error, r=yaahc | bors | -1/+2 |
| 2021-08-05 | alloc: Use intra doc links for the reserve function | est31 | -1/+3 |
| 2021-07-30 | Rollup merge of #87574 - cuviper:retain-examples, r=joshtriplett | Yuki Okushi | -3/+4 |
| 2021-07-28 | Update the examples in `String` and `VecDeque::retain` | Josh Stone | -3/+4 |
| 2021-07-28 | Remove redundant bounds on get_unchecked for vec_deque iterators, and run fmt | Frank Steffahn | -10/+4 |
| 2021-07-28 | Add TrustedRandomAccessNoCoerce supertrait without requirements or guarantees... | Frank Steffahn | -4/+12 |
| 2021-07-25 | Auto merge of #86595 - a1phyr:allocator_api_for_vecdeque, r=Amanieu | bors | -74/+137 |
| 2021-07-24 | Auto merge of #84111 - bstrie:hashfrom, r=joshtriplett | bors | -0/+22 |
| 2021-07-24 | Hide allocator details from TryReserveError | Kornel | -1/+2 |
| 2021-07-24 | Update std_collections_from_array stability version | bstrie | -1/+1 |
| 2021-07-23 | Add `#[unstable]` on new functions | Benoît du Garreau | -2/+2 |
| 2021-07-23 | Add unstable attribute for `A` in `Drain` and `IntoIter` | Benoît du Garreau | -2/+9 |
| 2021-07-23 | Add support for custom allocator in `VecDeque` | Benoît du Garreau | -74/+130 |