| Age | Commit message (Expand) | Author | Lines |
| 2022-04-09 | Rework String UTF-8 Documentation | Mark Lodato | -10/+82 |
| 2022-04-08 | hide another #[allow] directive from a docs example | Jack O'Connor | -1/+1 |
| 2022-04-08 | Add ThinBox type for 1 stack pointer sized heap allocated trait objects | Jane Lusby | -0/+222 |
| 2022-04-08 | Rollup merge of #95791 - oconnor663:doc_comment, r=thomcc | Dylan DPC | -1/+1 |
| 2022-04-08 | Rollup merge of #95579 - Cyborus04:slice_flatten, r=scottmcm | Dylan DPC | -0/+46 |
| 2022-04-08 | add `<[[T; N]]>::flatten`, `<[[T; N]]>::flatten_mut`, and `Vec::<[T; N]>::int... | Cyborus04 | -0/+46 |
| 2022-04-07 | hide an #[allow] directive from the Arc::new_cyclic doc example | Jack O'Connor | -1/+1 |
| 2022-04-07 | Auto merge of #95678 - pietroalbini:pa-1.62.0-bootstrap, r=Mark-Simulacrum | bors | -49/+32 |
| 2022-04-06 | add necessary closure for partition_point | Jane Lusby | -2/+2 |
| 2022-04-06 | Update binary_search example to instead redirect to partition_point | Jane Lusby | -2/+16 |
| 2022-04-05 | trivial cfg(bootstrap) changes | Pietro Albini | -49/+32 |
| 2022-04-06 | formatting | SparkyPotato | -1/+1 |
| 2022-04-06 | cleanup | SparkyPotato | -8/+2 |
| 2022-04-06 | fix Vec leak with 0 capacity | SparkyPotato | -0/+7 |
| 2022-03-31 | Rollup merge of #95491 - faern:stabilize-vec_retain_mut, r=yaahc | Dylan DPC | -6/+2 |
| 2022-03-31 | Rollup merge of #95298 - jhorstmann:fix-double-drop-of-allocator-in-vec-into-... | Dylan DPC | -7/+10 |
| 2022-03-30 | Stabilize feature vec_retain_mut on Vec and VecDeque | Linus Färnstrand | -6/+2 |
| 2022-03-30 | Auto merge of #94963 - lcnr:inherent-impls-std, r=oli-obk,m-ou-se | bors | -3/+25 |
| 2022-03-30 | remove now unnecessary lang items | lcnr | -3/+3 |
| 2022-03-30 | rework implementation for inherent impls for builtin types | lcnr | -0/+22 |
| 2022-03-29 | fixup feature position in liballoc | Aria Beingessner | -1/+1 |
| 2022-03-29 | cleanup some of the less terrifying library code | Aria Beingessner | -2/+2 |
| 2022-03-29 | Make the stdlib largely conform to strict provenance. | Aria Beingessner | -6/+6 |
| 2022-03-28 | Auto merge of #95249 - HeroicKatora:set-ptr-value, r=dtolnay | bors | -6/+7 |
| 2022-03-28 | Rollup merge of #95098 - shepmaster:vec-from-array-ref, r=dtolnay | Dylan DPC | -0/+42 |
| 2022-03-28 | Rollup merge of #95016 - janpaul123:patch-1, r=dtolnay | Dylan DPC | -3/+7 |
| 2022-03-28 | Rollup merge of #93755 - ChayimFriedman2:allow-comparing-vecs-with-different-... | Dylan DPC | -1/+1 |
| 2022-03-27 | Rollup merge of #95368 - lopopolo:lopopolo/string-try-reserve-exact-doc-typo,... | Dylan DPC | -1/+1 |
| 2022-03-27 | Fix typo in `String::try_reserve_exact` docs | Ryan Lopopolo | -1/+1 |
| 2022-03-27 | Use default alloc_error_handler for hermit | Martin Kröning | -1/+1 |
| 2022-03-27 | Support arrays of zeros in Vec's __rust_alloc_zeroed optimization | Scott McMurray | -1/+8 |
| 2022-03-25 | Use ManuallyDrop::take instead of into_inner | Jörn Horstmann | -1/+1 |
| 2022-03-25 | Fix double drop of allocator in IntoIter impl of Vec | Jörn Horstmann | -7/+10 |
| 2022-03-24 | Auto merge of #87667 - the8472:document-in-place-iter, r=yaahc | bors | -168/+317 |
| 2022-03-23 | fix some links, clarify documentation based on review feedback | The 8472 | -12/+19 |
| 2022-03-23 | Refactor set_ptr_value as with_metadata_of | Andreas Molzer | -6/+7 |
| 2022-03-23 | Explicitly mention overflow is what we're checking | Michael Bradshaw | -4/+4 |
| 2022-03-23 | Clarify that `Cow::into_owned` returns owned data | Jonathan Giddy | -3/+3 |
| 2022-03-22 | Format unsafe {} blocks | Michael Bradshaw | -2/+6 |
| 2022-03-22 | Optimize RcInnerPtr::inc_strong instruction count | Michael Bradshaw | -10/+24 |
| 2022-03-22 | Remove impossible panic note from `Vec::append` | Tobias Bucher | -1/+1 |
| 2022-03-22 | rename internal helper trait AsIntoIter to AsVecIntoIter | The 8472 | -10/+10 |
| 2022-03-21 | weaken needlessly restrictive orderings on `Arc::*_count` | Ibraheem Ahmed | -6/+6 |
| 2022-03-21 | add module-level documentation for vec's in-place iteration | The8472 | -20/+159 |
| 2022-03-21 | move AsIntoIter helper trait and mark it as unsafe | The8472 | -11/+14 |
| 2022-03-21 | rename module to better reflect its purpose | The8472 | -1/+1 |
| 2022-03-21 | Rename `~const Drop` to `~const Destruct` | Deadbeef | -11/+26 |
| 2022-03-20 | Auto merge of #92962 - frank-king:btree_entry_no_insert, r=Amanieu | bors | -41/+86 |
| 2022-03-18 | impl From<&[T; N]> and From<&mut [T; N]> for Vec<T> | Jake Goulding | -0/+42 |
| 2022-03-18 | Make Weak::new const | CAD97 | -4/+6 |