| Age | Commit message (Expand) | Author | Lines |
| 2019-11-10 | Rollup merge of #66217 - RalfJung:diagnostic-items, r=Centril | Yuki Okushi | -0/+4 |
| 2019-11-09 | Fix typo | Christopher Durham | -1/+1 |
| 2019-11-09 | Fix Layout::pad_to_align type mismatch | Christopher Durham | -2/+3 |
| 2019-11-09 | Layout::pad_to_align is infallible | Christopher Durham | -5/+7 |
| 2019-11-09 | add raw ptr variant of UnsafeCell::get | Ralf Jung | -0/+30 |
| 2019-11-09 | partially port invalid_value lint to diagnostic items | Ralf Jung | -0/+4 |
| 2019-11-09 | Auto merge of #66242 - Centril:rollup-h73ztr1, r=Centril | bors | -0/+4 |
| 2019-11-09 | Auto merge of #65879 - ohadravid:stabilize-re-rebalance-coherence, r=nikomats... | bors | -15/+12 |
| 2019-11-08 | remove vestigial comments referring to defunct numeric trait hierarchy | Alexander Nye | -2/+0 |
| 2019-11-08 | add link to unstable book for asm! macro | Lzu Tao | -0/+4 |
| 2019-11-08 | Rollup merge of #65580 - SimonSapin:maybeuninit-array, r=Amanieu | Yuki Okushi | -0/+63 |
| 2019-11-07 | Implement Debug for MaybeUninit | Peter Todd | -0/+9 |
| 2019-11-07 | Rollup merge of #63793 - oli-obk:🧹, r=dtolnay | Mazdak Farrokhzad | -12/+133 |
| 2019-11-07 | MaybeUninit::uninit_array docs: better example | Simon Sapin | -14/+20 |
| 2019-11-07 | Apply docs suggestions from review | Simon Sapin | -4/+4 |
| 2019-11-07 | Add `MaybeUninit` methods `uninit_array`, `slice_get_ref`, `slice_get_mut` | Simon Sapin | -0/+57 |
| 2019-11-07 | Rollup merge of #66017 - LukasKalbertodt:array-into-iter-lint, r=matthewjasper | Mazdak Farrokhzad | -0/+1 |
| 2019-11-07 | Rollup merge of #66117 - olegnn:fixed_linked_list_marker, r=RalfJung | Yuki Okushi | -2/+7 |
| 2019-11-07 | Rollup merge of #66111 - RalfJung:from_raw_parts, r=Centril | Yuki Okushi | -23/+60 |
| 2019-11-07 | Rollup merge of #66044 - RalfJung:uninit-lint, r=oli-obk | Yuki Okushi | -0/+1 |
| 2019-11-07 | Rollup merge of #65794 - Centril:unimpl-internal, r=varkor | Yuki Okushi | -1/+1 |
| 2019-11-06 | Add future incompatibility lint for `array.into_iter()` | Lukas Kalbertodt | -0/+1 |
| 2019-11-06 | The unsafety in `iter.rs` is already documented wonderfully | Oliver Scherer | -5/+8 |
| 2019-11-06 | Silence a deprecation warning | Oliver Scherer | -0/+1 |
| 2019-11-06 | Halloween... time to get rid of 👻 | Oliver Scherer | -15/+19 |
| 2019-11-06 | Have tidy ensure that we document all `unsafe` blocks in libcore | Oliver Scherer | -5/+118 |
| 2019-11-06 | gate rustc_on_unimplemented under rustc_attrs | Mazdak Farrokhzad | -1/+1 |
| 2019-11-06 | Rollup merge of #65973 - eddyb:caller-location-panic, r=petrochenkov | Mazdak Farrokhzad | -17/+15 |
| 2019-11-06 | Fixed libcore/cell.rs example | Oleg Nosov | -1/+4 |
| 2019-11-05 | Apply suggestions from code review | Ralf Jung | -2/+2 |
| 2019-11-05 | Reverted PhantomData in LinkedList, fixed PhantomData markers in Rc and Arc | Oleg Nosov | -1/+3 |
| 2019-11-05 | Rollup merge of #65948 - danielhenrymantilla:doc/maybe_uninit_ref_mut, r=Ralf... | Pietro Albini | -8/+159 |
| 2019-11-05 | fix link to ptr docs | Ralf Jung | -2/+2 |
| 2019-11-05 | expand slice from_raw_part docs | Ralf Jung | -18/+46 |
| 2019-11-05 | Rollup merge of #66038 - jdxcode:char-len, r=alexcrichton | Pietro Albini | -2/+2 |
| 2019-11-05 | Rollup merge of #66019 - olegnn:fixed_std_iter_chain_docs, r=Mark-Simulacrum | Pietro Albini | -1/+1 |
| 2019-11-05 | Rollup merge of #65962 - kevincox:patch-1, r=sfackler | Pietro Albini | -5/+5 |
| 2019-11-05 | link from raw slice creation methods to safety requirements | Ralf Jung | -5/+14 |
| 2019-11-04 | Improve wording in the documentation of `Iterator::count()`. | Artur Kovacs | -4/+4 |
| 2019-11-04 | Fixed trailing whitespace. | Artur Kovacs | -1/+1 |
| 2019-11-04 | Minor style improvements | Daniel Henry-Mantilla | -13/+7 |
| 2019-11-04 | Fix documentation for `Iterator::count()`. | Artur Kovacs | -2/+3 |
| 2019-11-04 | more robust method checking through DefId and diagnostic_item | Ralf Jung | -0/+1 |
| 2019-11-02 | Auto merge of #63810 - oli-obk:const_offset_from, r=RalfJung,nikic | bors | -1/+21 |
| 2019-11-02 | Rename SuperiorThanZero -> GreaterThanZero | Kevin Cox | -4/+4 |
| 2019-11-01 | doc(str): show example of chars().count() under len() | Jeff Dickey | -2/+2 |
| 2019-11-01 | Rollup merge of #66002 - lzutao:stablilize-float_to_from_bytes, r=SimonSapin | Tyler Mandry | -24/+12 |
| 2019-11-01 | Rollup merge of #65960 - lzutao:doc-iter-example, r=Centril | Tyler Mandry | -21/+14 |
| 2019-11-01 | Rollup merge of #65902 - gilescope:issue62570, r=estebank | Tyler Mandry | -2/+15 |
| 2019-11-01 | Fixed std::iter::Chain documentation | Oleg Nosov | -1/+1 |