| Age | Commit message (Expand) | Author | Lines |
| 2020-11-07 | remove needs_drop | The8472 | -8/+4 |
| 2020-10-01 | Fix typo in vec doc "tries to reserves" | Ivan Tham | -3/+4 |
| 2020-09-30 | Rollup merge of #77340 - pickfire:patch-9, r=kennytm | Jonas Schievink | -1/+1 |
| 2020-09-29 | Alloc vec use imported path | Ivan Tham | -1/+1 |
| 2020-09-29 | Fix typo in alloc vec comment | Ivan Tham | -1/+1 |
| 2020-09-25 | Auto merge of #77201 - matthewjasper:rename-get-unchecked, r=spastorino | bors | -3/+9 |
| 2020-09-25 | Rename Iterator::get_unchecked | Matthew Jasper | -1/+1 |
| 2020-09-25 | Improve <vec::IntoIter>::get_unchecked` safety comment | Matthew Jasper | -2/+8 |
| 2020-09-25 | Remove extra space from vec drawing | Ivan Tham | -1/+0 |
| 2020-09-25 | Rollup merge of #77050 - follower:patch-1, r=oli-obk | Jonas Schievink | -1/+1 |
| 2020-09-23 | Rollup merge of #77017 - GuillaumeGomez:vec-missing-examples-iter, r=Dylan-DPC | Dylan DPC | -0/+31 |
| 2020-09-22 | Add missing examples on Vec iter types | Guillaume Gomez | -0/+31 |
| 2020-09-22 | Typo fix: "satsify" -> "satisfy" | follower | -1/+1 |
| 2020-09-19 | Rollup merge of #76310 - scottmcm:array-try_from-vec, r=dtolnay | Ralf Jung | -0/+52 |
| 2020-09-16 | Rollup merge of #76662 - RalfJung:lib-test-miri, r=Mark-Simulacrum | Ralf Jung | -1/+1 |
| 2020-09-16 | Rollup merge of #76062 - pickfire:patch-13, r=jyn514 | Ralf Jung | -1/+3 |
| 2020-09-16 | Rollup merge of #76056 - pickfire:patch-10, r=jyn514 | Ralf Jung | -0/+1 |
| 2020-09-15 | fix slice::check_range aliasing problems | Ralf Jung | -1/+1 |
| 2020-09-15 | Vec doc use elision as code rather than comment | Ivan Tham | -1/+3 |
| 2020-09-15 | Auto merge of #76682 - richkadel:vec-take, r=Mark-Simulacrum | bors | -0/+5 |
| 2020-09-13 | Optimize behavior of vec.split_off(0) (take all) | Rich Kadel | -0/+5 |
| 2020-09-11 | Auto merge of #73951 - pickfire:liballoc-intoiter, r=Mark-Simulacrum | bors | -33/+25 |
| 2020-09-07 | Typo fix
| scottmcm | -1/+1 |
| 2020-09-07 | Rollup merge of #76303 - jyn514:vec-assert-doc, r=Dylan-DPC | Dylan DPC | -0/+3 |
| 2020-09-05 | Nightly is currently 1.48 | scottmcm | -1/+1 |
| 2020-09-05 | Rollup merge of #76060 - pickfire:patch-12, r=jyn514 | Dylan DPC | -1/+3 |
| 2020-09-04 | Auto merge of #75207 - dylni:add-slice-check-range, r=KodrAus | bors | -31/+2 |
| 2020-09-03 | Add `[T; N]: TryFrom<Vec<T>>` | Scott McMurray | -0/+52 |
| 2020-09-04 | Add slice primitive link to vec | Ivan Tham | -1/+2 |
| 2020-09-03 | Link to `#capacity-and-reallocation` when using with_capacity | Joshua Nelson | -0/+3 |
| 2020-09-03 | fix debug assertion | The8472 | -4/+18 |
| 2020-09-03 | improve comments and naming | The8472 | -25/+56 |
| 2020-09-03 | add explanation to specialization marker | The8472 | -0/+6 |
| 2020-09-03 | remove separate no-drop code path since it resulted in more LLVM IR | The8472 | -32/+15 |
| 2020-09-03 | remove empty Vec extend optimization | The8472 | -14/+2 |
| 2020-09-03 | get things to work under min_specialization by leaning more heavily on #[rust... | The8472 | -8/+13 |
| 2020-09-03 | apply required min_specialization attributes | The8472 | -1/+7 |
| 2020-09-03 | generalize in-place collect to types of same size and alignment | The8472 | -19/+27 |
| 2020-09-03 | increase comment verbosity | The8472 | -2/+2 |
| 2020-09-03 | work around compiler overhead around lambdas in generics by extracting them i... | The8472 | -34/+39 |
| 2020-09-03 | extract IntoIter drop/forget used by specialization into separate methods | The8472 | -15/+25 |
| 2020-09-03 | remove redundant cast | The8472 | -1/+1 |
| 2020-09-03 | move unsafety into method, not relevant to caller | The8472 | -2/+2 |
| 2020-09-03 | replace unsafe ptr::write with deref-write, benchmarks show no difference | The8472 | -10/+4 |
| 2020-09-03 | pacify tidy | The8472 | -3/+3 |
| 2020-09-03 | replace drop flag with ManuallyDrop | The8472 | -6/+4 |
| 2020-09-03 | mark as_inner as unsafe and update comments | The8472 | -4/+8 |
| 2020-09-03 | avoid exposing that binary heap's IntoIter is backed by vec::IntoIter, use a ... | The8472 | -5/+16 |
| 2020-09-03 | impl TrustedRandomAccess for vec::IntoIter | The8472 | -1/+22 |
| 2020-09-03 | move free-standing method into trait impl | The8472 | -79/+75 |