| Age | Commit message (Expand) | Author | Lines |
| 2019-10-01 | Rollup merge of #64912 - lzutao:unneeded-main-doc, r=jonas-schievink | Mazdak Farrokhzad | -85/+54 |
| 2019-10-01 | BTreeSet intersection, difference & is_subnet optimizations | Stein Somers | -93/+247 |
| 2019-10-01 | Remove unneeded `fn main` blocks from docs | Lzu Tao | -85/+54 |
| 2019-09-30 | Rollup merge of #64893 - SimonSapin:vec-of-option-box, r=sfackler | Tyler Mandry | -0/+25 |
| 2019-09-29 | Zero-initialize `vec![None; n]` for `Option<&T>`, `Option<&mut T>` and `Optio... | Simon Sapin | -0/+25 |
| 2019-09-29 | Fix `vec![x; n]` with null raw fat pointer zeroing the pointer metadata | Simon Sapin | -2/+50 |
| 2019-09-27 | Stabilize map_get_key_value feature | Lzu Tao | -2/+1 |
| 2019-09-25 | Snap cfgs to new beta | Mark Rousskov | -5/+1 |
| 2019-09-24 | fix several issues in String docs | jordins | -4/+4 |
| 2019-09-20 | Exempt extern "Rust" from improper_ctypes | Josh Stone | -1/+1 |
| 2019-09-16 | Const-stabilize `String::new`. | Mazdak Farrokhzad | -1/+1 |
| 2019-09-16 | Const-stabilize `Vec::new`. | Mazdak Farrokhzad | -4/+29 |
| 2019-09-16 | Auto merge of #64383 - pcpthm:btreeset-size-hint, r=dtolnay | bors | -22/+33 |
| 2019-09-16 | Improve BTreeSet::Intersection::size_hint | pcpthm | -22/+33 |
| 2019-09-14 | Rollup merge of #61797 - Thomasdezeeuw:stablise-weak_ptr_eq, r=RalfJung | Mazdak Farrokhzad | -11/+8 |
| 2019-09-14 | Rollup merge of #64375 - kornelski:vecdrop, r=rkruppe | Mazdak Farrokhzad | -13/+17 |
| 2019-09-14 | Rollup merge of #64203 - alexreg:rush-pr-2, r=centril | Mazdak Farrokhzad | -83/+81 |
| 2019-09-14 | Update src/liballoc/raw_vec.rs | Alexander Regueiro | -1/+1 |
| 2019-09-11 | Guarantee vec.clear/truncate is O(1) for trivial types | Kornel | -13/+17 |
| 2019-09-07 | Improve hygiene of `alloc::format!` | Vadim Petrochenkov | -1/+7 |
| 2019-09-06 | A few cosmetic improvements to code & comments in liballoc and libcore | Alexander Regueiro | -83/+81 |
| 2019-08-30 | Rollup merge of #63684 - GrayJack:const_list_new, r=Centril | Mazdak Farrokhzad | -1/+1 |
| 2019-08-30 | Add a "diagnostic item" scheme | Oliver Scherer | -0/+1 |
| 2019-08-25 | Update {rc, sync}::Weak::ptr_eq doc about comparing Weak::new | Thomas de Zeeuw | -5/+6 |
| 2019-08-25 | Stabilise weak_ptr_eq | Thomas de Zeeuw | -6/+2 |
| 2019-08-22 | Fix formatting. | Tomasz Różański | -1/+1 |
| 2019-08-22 | Fix a typo. | Tomasz Różański | -1/+1 |
| 2019-08-19 | Rollup merge of #63252 - nrc:arc-doc, r=alexcrichton | Mazdak Farrokhzad | -4/+0 |
| 2019-08-18 | Auto merge of #63045 - Rosto75:master, r=jonas-schievink | bors | -43/+43 |
| 2019-08-18 | Constify LinkedList new function | GrayJack | -1/+1 |
| 2019-08-17 | Rollup merge of #62451 - SimonSapin:new_uninit, r=RalfJung | Mazdak Farrokhzad | -10/+497 |
| 2019-08-17 | Rename private helper method allocate_for_unsized to allocate_for_layout | Simon Sapin | -10/+10 |
| 2019-08-17 | Doc nits | Simon Sapin | -14/+14 |
| 2019-08-16 | Rollup merge of #63613 - petrochenkov:stdhyg, r=alexcrichton | Mazdak Farrokhzad | -1/+1 |
| 2019-08-16 | Add the Layout of the failed allocation to TryReserveError::AllocError | Simon Sapin | -40/+46 |
| 2019-08-16 | Rename CollectionAllocError to TryReserveError | Simon Sapin | -36/+36 |
| 2019-08-16 | Relax the safety condition for get_mut_unchecked | Simon Sapin | -4/+8 |
| 2019-08-16 | Reuse more internal Rc and Arc methods | Simon Sapin | -70/+14 |
| 2019-08-16 | Add a comment on the usage of Layout::new::<RcBox<()>>() | Simon Sapin | -0/+4 |
| 2019-08-16 | Add tracking issue numbers | Simon Sapin | -14/+14 |
| 2019-08-16 | Use ManuallyDrop instead of mem::forget | Simon Sapin | -12/+4 |
| 2019-08-16 | Use `alloc::Global` in `Box::new_uninit` | Simon Sapin | -4/+6 |
| 2019-08-16 | Fix intra-rustdoc links | Simon Sapin | -2/+14 |
| 2019-08-16 | Move constructors of boxed/rc’ed slices to matching `impl` blocks | Simon Sapin | -100/+106 |
| 2019-08-16 | Add new_uninit_slice and assume_init on Box, Rc, and Arc of [T] | Simon Sapin | -14/+256 |
| 2019-08-16 | Add new_uninit and assume_init on Box, Rc, and Arc | Simon Sapin | -0/+223 |
| 2019-08-16 | Add Rc::get_mut_unchecked, Arc::get_mut_unchecked | Simon Sapin | -2/+60 |
| 2019-08-15 | Hygienize use of built-in macros in the standard library | Vadim Petrochenkov | -1/+1 |
| 2019-08-14 | Auto merge of #63534 - Mark-Simulacrum:stage0-bump, r=Centril | bors | -6/+6 |
| 2019-08-14 | Handle cfg(bootstrap) throughout | Mark Rousskov | -6/+6 |