| Age | Commit message (Expand) | Author | Lines |
| 2023-03-03 | Match unmatched backticks in library/ | est31 | -1/+1 |
| 2023-02-19 | Rollup merge of #106933 - schuelermine:fix/doc/102451, r=Amanieu | Dylan DPC | -6/+14 |
| 2023-02-18 | Update documentation of select_nth_unstable and select_nth_unstable_by and se... | Anselm Schüler | -6/+14 |
| 2023-01-31 | improve panic message for slice windows and chunks | Lukas Markeffsky | -16/+32 |
| 2023-01-20 | Rollup merge of #104672 - Voultapher:unify-sort-modules, r=thomcc | Michael Goulet | -1/+7 |
| 2023-01-17 | Rollup merge of #106889 - scottmcm:windows-mut, r=cuviper | Matthias Krüger | -0/+16 |
| 2023-01-14 | Mention the lack of `windows_mut` in `windows` | Scott McMurray | -0/+16 |
| 2023-01-14 | Fix some missed double spaces. | André Vennberg | -1/+1 |
| 2023-01-14 | Remove various double spaces in source comments. | André Vennberg | -2/+2 |
| 2022-12-22 | Rollup merge of #105584 - raffimolero:patch-1, r=JohnTitor | Yuki Okushi | -9/+9 |
| 2022-12-17 | Another `as_chunks` example | Scott McMurray | -0/+11 |
| 2022-12-15 | doc: Fix a few small issues | Hannes Körber | -1/+1 |
| 2022-12-12 | add assert messages if chunks/windows are length 0 | raffimolero | -9/+9 |
| 2022-12-09 | Auto merge of #105262 - eduardosm:more-inline-always, r=thomcc | bors | -2/+2 |
| 2022-12-07 | Make some trivial functions `#[inline(always)]` | Eduardo Sánchez Muñoz | -2/+2 |
| 2022-12-05 | attempt to clarify align_to docs | Ralf Jung | -8/+10 |
| 2022-11-20 | Unify stable and unstable sort implementations in same core module | Lukas Bergdoll | -1/+7 |
| 2022-11-20 | Add get_many_mut methods to slice | Marvin Löbel | -0/+136 |
| 2022-11-18 | Rollup merge of #102977 - lukas-code:is-sorted-hrtb, r=m-ou-se | Manish Goregaokar | -4/+4 |
| 2022-11-09 | Rollup merge of #104111 - yancyribbens:add-mutable-to-the-description-for-as-... | Dylan DPC | -1/+2 |
| 2022-11-07 | rustdoc: Add mutable to the description | yancy | -1/+2 |
| 2022-11-07 | rustdoc: Add mutable to the description | yancy | -2/+2 |
| 2022-10-26 | Print the precondition we violated, and visible through output capture | Ben Kimock | -4/+16 |
| 2022-10-24 | Auto merge of #100848 - xfix:use-metadata-for-slice-len, r=thomcc | bors | -9/+2 |
| 2022-10-18 | Rollup merge of #102507 - scottmcm:more-binary-search-docs, r=m-ou-se | Matthias Krüger | -0/+32 |
| 2022-10-15 | More slice::partition_point examples | Scott McMurray | -0/+32 |
| 2022-10-12 | remove HRTB from `[T]::is_sorted_by{,_key}` | Lukas Markeffsky | -4/+4 |
| 2022-10-02 | Auto merge of #102535 - scottmcm:optimize-split-at-partition-point, r=thomcc | bors | -3/+12 |
| 2022-09-30 | Tell LLVM that `partition_point` returns a valid fencepost | Scott McMurray | -3/+12 |
| 2022-09-26 | rustdoc: Update doc comment for splitn_mut to include mutable in the description | yancy | -1/+1 |
| 2022-09-25 | Rollup merge of #101800 - chriss0612:feat/const_split_at_mut, r=fee1-dead | fee1-dead | -2/+4 |
| 2022-09-25 | Rollup merge of #98111 - eggyal:issue-97982, r=GuillaumeGomez | fee1-dead | -11/+14 |
| 2022-09-25 | Auto merge of #102169 - scottmcm:constify-some-conditions, r=thomcc | bors | -5/+5 |
| 2022-09-22 | Make ZST checks in core/alloc more readable | Scott McMurray | -5/+5 |
| 2022-09-14 | Cleanup closures. | raldone01 | -7/+4 |
| 2022-09-14 | Add const_slice_split_at_mut Feature gate. | onestacked | -2/+4 |
| 2022-09-04 | Make `const_eval_select` a real intrinsic | Deadbeef | -6/+9 |
| 2022-08-31 | Correct typo | Dezhi Wu | -1/+1 |
| 2022-08-31 | Fix a bunch of typo | Dezhi Wu | -2/+2 |
| 2022-08-29 | add tracking issue number to const_slice_split_at_not_mut | Trevor Spiteri | -1/+1 |
| 2022-08-26 | Rollup merge of #100076 - tspiteri:const_slice_split_at, r=oli-obk | Yuki Okushi | -4/+13 |
| 2022-08-25 | review | Trevor Spiteri | -1/+5 |
| 2022-08-21 | Use ptr::metadata in <[T]>::len implementation | Konrad Borowski | -9/+2 |
| 2022-08-21 | Rollup merge of #100822 - WaffleLapkin:no_offset_question_mark, r=scottmcm | Matthias Krüger | -1/+1 |
| 2022-08-21 | Replace most uses of `pointer::offset` with `add` and `sub` | Maybe Waffle | -1/+1 |
| 2022-08-19 | Tracking issue for const_reverse | ltdk | -1/+1 |
| 2022-08-17 | Make slice::reverse const | ltdk | -5/+8 |
| 2022-08-12 | Adjust cfgs | Mark Rousskov | -2/+0 |
| 2022-08-02 | make slice::{split_at,split_at_unchecked} const functions | Trevor Spiteri | -4/+9 |
| 2022-07-23 | Auto merge of #93397 - joshtriplett:sort-floats, r=Amanieu | bors | -0/+60 |