| Age | Commit message (Expand) | Author | Lines |
| 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 |
| 2019-10-31 | Stabilize float_to_from_bytes feature | Lzu Tao | -24/+12 |
| 2019-10-31 | Strengthen documentation discouraging implementing `Into` over `From` | Ohad Ravid | -9/+7 |
| 2019-10-31 | Change `Into` docs to refer only to older versions of rust | Ohad Ravid | -6/+5 |
| 2019-10-30 | work around aggressive syntax feature gating | Ralf Jung | -0/+12 |
| 2019-10-30 | caller_location: use in core::panic!. | Eduard-Mihai Burtescu | -17/+15 |
| 2019-10-30 | doc: reword iter module example and mention other methods | Lzu Tao | -21/+14 |
| 2019-10-30 | Added a panic-on-uninhabited guard on get_ref and get_mut | Daniel Henry-Mantilla | -0/+2 |
| 2019-10-30 | Fix doctests | Daniel Henry-Mantilla | -7/+19 |
| 2019-10-30 | Fix logic in example. | Kevin Cox | -1/+1 |
| 2019-10-30 | Make ItemContext available for better diagnositcs. | Giles Cope | -2/+15 |
| 2019-10-29 | Improved MaybeUninit::get_{ref,mut} documentation | Daniel Henry-Mantilla | -8/+151 |
| 2019-10-29 | doc: use new feature gate for c_void type | Lzu Tao | -1/+6 |
| 2019-10-28 | Rollup merge of #65877 - lzutao:iter-chain-once, r=Centril | Mazdak Farrokhzad | -3/+18 |
| 2019-10-28 | Rollup merge of #65664 - anp:panic-location, r=eddyb | Mazdak Farrokhzad | -11/+109 |
| 2019-10-28 | Rollup merge of #64747 - ethanboxx:master, r=Centril | Mazdak Farrokhzad | -3/+1 |
| 2019-10-28 | doc: introduce `once` in `iter::chain` document | Lzu Tao | -3/+18 |
| 2019-10-27 | Panicking infra uses &core::panic::Location. | Adam Perry | -11/+104 |
| 2019-10-27 | Implement core::intrinsics::caller_location. | Adam Perry | -0/+5 |
| 2019-10-27 | Auto merge of #65519 - pnkfelix:issue-63438-trait-based-structural-match, r=m... | bors | -2/+89 |
| 2019-10-26 | Rollup merge of #65806 - fusion-engineering-forks:slice-ptr-range, r=Centril | Yuki Okushi | -1/+81 |
| 2019-10-26 | Rollup merge of #65799 - LukasKalbertodt:fill-array-value-iter-tracking-issue... | Yuki Okushi | -11/+11 |
| 2019-10-25 | Fix slice::as_ptr_range doctest. | Mara Bos | -7/+10 |
| 2019-10-25 | Add {String,Vec}::into_raw_parts | Jake Goulding | -0/+1 |
| 2019-10-25 | Explain why pointer::add in slice::as_ptr_range is safe. | Mara Bos | -0/+18 |
| 2019-10-25 | Migrate from `#[structural_match]` attribute a lang-item trait. | Felix S. Klock II | -2/+89 |
| 2019-10-25 | Add slice_ptr_range tracking issue number. | Mara Bos | -2/+2 |
| 2019-10-25 | Add [T]::as_ptr_range() and [T]::as_mut_ptr_range(). | Mara Bos | -1/+60 |
| 2019-10-25 | Fill tracking issue number for `array_value_iter` and fix Rust version | Lukas Kalbertodt | -11/+11 |
| 2019-10-25 | RFC 2008: Stabilization | David Wood | -1/+1 |
| 2019-10-24 | Add unit tests for `array::IntoIter` | Lukas Kalbertodt | -1/+207 |
| 2019-10-24 | Add `array::IntoIter` as a consuming/by-value array iterator | Lukas Kalbertodt | -0/+273 |
| 2019-10-23 | Rollup merge of #65479 - SimonSapin:matches, r=alexcrichton | Mazdak Farrokhzad | -0/+27 |
| 2019-10-23 | Document guard expressions in `matches!` | Simon Sapin | -1/+4 |