| Age | Commit message (Expand) | Author | Lines |
| 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 | Auto merge of #76217 - RalfJung:maybe-uninit-slice, r=KodrAus | bors | -11/+15 |
| 2020-09-05 | Nightly is currently 1.48 | scottmcm | -1/+1 |
| 2020-09-05 | rename MaybeUninit slice methods | Ralf Jung | -11/+15 |
| 2020-09-05 | Rollup merge of #76060 - pickfire:patch-12, r=jyn514 | Dylan DPC | -1/+3 |
| 2020-09-05 | Rollup merge of #75994 - mental32:impl-rc-new-cyclic, r=KodrAus | Dylan DPC | -0/+110 |
| 2020-09-04 | Re-export ArrayChunksMut in alloc | Josh Stone | -0/+2 |
| 2020-09-04 | Auto merge of #75200 - ssomers:btree_valmut, r=Mark-Simulacrum | bors | -171/+319 |
| 2020-09-04 | Auto merge of #75207 - dylni:add-slice-check-range, r=KodrAus | bors | -71/+22 |
| 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/+14 |
| 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 | -21/+31 |
| 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 | -6/+6 |
| 2020-09-03 | replace drop flag with ManuallyDrop | The8472 | -6/+4 |
| 2020-09-03 | mark as_inner as unsafe and update comments | The8472 | -5/+9 |
| 2020-09-03 | avoid exposing that binary heap's IntoIter is backed by vec::IntoIter, use a ... | The8472 | -9/+26 |
| 2020-09-03 | fix build issue due to stabilized feature | The8472 | -0/+1 |
| 2020-09-03 | impl TrustedRandomAccess for vec::IntoIter | The8472 | -1/+22 |
| 2020-09-03 | remove unecessary feature flag | The8472 | -1/+0 |
| 2020-09-03 | move free-standing method into trait impl | The8472 | -79/+75 |
| 2020-09-03 | fix some in-place-collect edge-cases | The8472 | -0/+13 |
| 2020-09-03 | remove redundant code | The8472 | -7/+1 |
| 2020-09-03 | improve comments | The8472 | -7/+10 |
| 2020-09-03 | specialize creating a Vec from a slice iterator where T: Copy | The8472 | -0/+14 |
| 2020-09-03 | restore SpecFrom<T, TrustedLen<Item=T>> specialization by nesting | The8472 | -1/+29 |
| 2020-09-03 | use From specializations on extend if extended Vec is empty | The8472 | -3/+25 |
| 2020-09-03 | use memmove instead of generic in-place iteration for IntoIter source | The8472 | -2/+10 |
| 2020-09-03 | restore Vec::extend specialization for vec::IntoIter sources that | The8472 | -0/+9 |
| 2020-09-03 | hide binary_heap::IntoIter internals behind impl Trait | The8472 | -1/+2 |
| 2020-09-03 | recover vectorization | The8472 | -23/+54 |
| 2020-09-03 | simplify pointer arithmetic | The8472 | -11/+15 |
| 2020-09-03 | use add instead of offset | The8472 | -1/+1 |
| 2020-09-03 | implement drop handling | The8472 | -7/+26 |
| 2020-09-03 | assert that SourceIter requirements have not been violated by the pipeline | The8472 | -0/+2 |
| 2020-09-03 | mark SourceIter as unsafe, document invariants | The8472 | -2/+2 |