| Age | Commit message (Expand) | Author | Lines |
| 2020-09-07 | Auto merge of #76368 - ayushmishra2005:move_str_contact_library, r=jyn514 | bors | -0/+8 |
| 2020-09-07 | Typo fix
| scottmcm | -1/+1 |
| 2020-09-07 | Rollup merge of #76324 - ayushmishra2005:move_vec_tests_in_library, r=matklad | Dylan DPC | -0/+23 |
| 2020-09-07 | Rollup merge of #76305 - CDirkx:const-tests, r=matklad | Dylan DPC | -0/+14 |
| 2020-09-07 | Rollup merge of #76303 - jyn514:vec-assert-doc, r=Dylan-DPC | Dylan DPC | -0/+3 |
| 2020-09-07 | Rollup merge of #76273 - CraftSpider:master, r=matklad | Dylan DPC | -0/+56 |
| 2020-09-06 | Clean up vec benches bench_in_place style | Ivan Tham | -22/+21 |
| 2020-09-06 | Move test-cases in string.rs | Ayush Kumar Mishra | -8/+8 |
| 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-05 | Move Various str tests in library | Ayush Kumar Mishra | -0/+21 |
| 2020-09-05 | Added str tests in library | Ayush Kumar Mishra | -0/+8 |
| 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-04 | Move Vec slice UI tests in library | Ayush Kumar Mishra | -0/+23 |
| 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-04 | Move various ui const tests to `library` | Christiaan Dirkx | -0/+14 |
| 2020-09-04 | Add tests for overflow in String / VecDeque operations using ranges | Tomasz Miąsko | -0/+45 |
| 2020-09-04 | Add tests for overflow in Vec::drain | Tomasz Miąsko | -0/+25 |
| 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 | Remove vec-to_str.rs, merge the remaining test in with vec | Rune Tynan | -0/+3 |
| 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 | -24/+2 |
| 2020-09-03 | get things to work under min_specialization by leaning more heavily on #[rust... | The8472 | -8/+14 |
| 2020-09-03 | fix benchmark compile errors | The8472 | -12/+9 |
| 2020-09-03 | apply required min_specialization attributes | The8472 | -1/+7 |
| 2020-09-03 | support in-place collect for MapWhile adapters | The8472 | -0/+2 |
| 2020-09-03 | generalize in-place collect to types of same size and alignment | The8472 | -23/+34 |
| 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 | add benchmark to cover in-place extend | The8472 | -0/+14 |
| 2020-09-03 | remove redundant cast | The8472 | -1/+1 |
| 2020-09-03 | test drops during in-place iteration | The8472 | -0/+40 |
| 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: bench didn't black_box its results | The8472 | -3/+1 |
| 2020-09-03 | fix build issue due to stabilized feature | The8472 | -0/+1 |