| Age | Commit message (Expand) | Author | Lines |
| 2024-07-27 | Rollup merge of #125897 - RalfJung:from-ref, r=Amanieu | Trevor Gross | -6/+86 |
| 2024-07-27 | Improve panic sections for sort*, sort_unstable* and select_nth_unstable* | Lukas Bergdoll | -12/+15 |
| 2024-07-27 | Improve panic message and surrounding documentation for Ord violations | Lukas Bergdoll | -4/+19 |
| 2024-07-27 | Auto merge of #128255 - stepancheg:doc-shl, r=scottmcm | bors | -0/+13 |
| 2024-07-27 | Auto merge of #127946 - tgross35:fmt-builders-set-result, r=cuviper | bors | -4/+8 |
| 2024-07-27 | Document int.checked_shl(BITS - 1) | Stepan Koltsov | -0/+13 |
| 2024-07-26 | Rollup merge of #128235 - harryscholes:fix-iterator-filter-docs, r=tgross35 | Trevor Gross | -1/+1 |
| 2024-07-26 | Rollup merge of #124941 - Skgland:stabilize-const-int-from-str, r=dtolnay | Trevor Gross | -5/+4 |
| 2024-07-26 | Add links from `assert_eq!` docs to `debug_assert_eq!`, etc. | Matt Brubeck | -0/+18 |
| 2024-07-26 | Always set `result` during `finish()` in debug builders | Trevor Gross | -4/+8 |
| 2024-07-26 | Fix docs | harryscholes | -1/+1 |
| 2024-07-26 | Fix doc nits | John Arundel | -456/+503 |
| 2024-07-26 | Rollup merge of #128170 - saethlin:clone-fn, r=compiler-errors | Trevor Gross | -0/+3 |
| 2024-07-26 | Rollup merge of #128150 - BoxyUwU:std_only_sized_const_params, r=workingjubilee | Matthias Krüger | -13/+2 |
| 2024-07-26 | Rollup merge of #127950 - nnethercote:rustfmt-skip-on-use-decls, r=cuviper | Matthias Krüger | -4/+11 |
| 2024-07-25 | Make Clone::clone a lang item | Ben Kimock | -0/+3 |
| 2024-07-25 | Stop using `unsized_const_parameters` in core/std | Boxy | -13/+2 |
| 2024-07-25 | clarify interactions with MaybeUninit and UnsafeCell | binarycat | -6/+10 |
| 2024-07-25 | remove duplicate explanations of the ptr to ref conversion rules | binarycat | -183/+50 |
| 2024-07-25 | create a new section on pointer to reference conversion | binarycat | -36/+28 |
| 2024-07-25 | CStr: derive PartialEq, Eq; add test for Ord | Pavel Grigorenko | -11/+21 |
| 2024-07-24 | Implement `mixed_integer_ops_unsigned_sub` | ilikdoge | -0/+103 |
| 2024-07-24 | Rollup merge of #128046 - GrigorenkoPV:90435, r=tgross35 | Matthias Krüger | -7/+7 |
| 2024-07-24 | Rollup merge of #126042 - davidzeng0:master, r=Amanieu | Matthias Krüger | -0/+61 |
| 2024-07-24 | Rollup merge of #128120 - compiler-errors:async-fn-name, r=oli-obk | Matthias Krüger | -3/+3 |
| 2024-07-24 | Rollup merge of #127733 - GrigorenkoPV:don't-forget, r=Amanieu | Matthias Krüger | -10/+5 |
| 2024-07-24 | Rollup merge of #127252 - fitzgen:edge-cases-for-bitwise-operations, r=m-ou-se | Matthias Krüger | -6/+35 |
| 2024-07-24 | Rollup merge of #126152 - RalfJung:size_of_val_raw, r=saethlin | Matthias Krüger | -0/+10 |
| 2024-07-24 | Rollup merge of #128043 - safinaskar:primitive, r=workingjubilee | Matthias Krüger | -3/+9 |
| 2024-07-24 | Rollup merge of #127481 - a1phyr:pattern_gat, r=Amanieu | Matthias Krüger | -146/+151 |
| 2024-07-24 | Rollup merge of #126770 - wr7:master, r=Amanieu | Matthias Krüger | -0/+149 |
| 2024-07-23 | Gate AsyncFn* under async_closure feature | Michael Goulet | -3/+3 |
| 2024-07-23 | Add elem_offset and related methods | wr7 | -0/+149 |
| 2024-07-23 | library/core/src/primitive.rs: small doc fix | Askar Safin | -1/+1 |
| 2024-07-23 | add `is_multiple_of` for unsigned integer types | Folkert | -0/+38 |
| 2024-07-23 | Docs for core::primitive: mention that "core" can be shadowed, too, so we sho... | Askar Safin | -3/+9 |
| 2024-07-22 | LocalWaker docs: Make long-ago omitted but probably intended changes | Ian Jackson | -1/+3 |
| 2024-07-22 | Docs for Waker and LocalWaker: Add cross-refs in comment | Ian Jackson | -0/+8 |
| 2024-07-22 | Rollup merge of #128008 - weiznich:fix/121521, r=lcnr | Trevor Gross | -1/+3 |
| 2024-07-22 | Start using `#[diagnostic::do_not_recommend]` in the standard library | Georg Semmler | -1/+3 |
| 2024-07-22 | Fix some `#[cfg_attr(not(doc), repr(..))]` | Pavel Grigorenko | -7/+7 |
| 2024-07-21 | Implement `debug_more_non_exhaustive` | Trevor Gross | -2/+521 |
| 2024-07-21 | Make use of raw strings in `core::fmt::builders` | Trevor Gross | -49/+49 |
| 2024-07-21 | Auto merge of #127722 - BoxyUwU:new_adt_const_params_limitations, r=compiler-... | bors | -12/+65 |
| 2024-07-19 | Auto merge of #127982 - matthiaskrgr:rollup-nzyvphj, r=matthiaskrgr | bors | -2/+2 |
| 2024-07-19 | Rollup merge of #127978 - nyurik:lib-refs, r=workingjubilee | Matthias Krüger | -2/+2 |
| 2024-07-19 | Avoid ref when using format! for perf | Yuri Astrakhan | -2/+2 |
| 2024-07-19 | improve safety comment | ivan-shrimp | -1/+1 |
| 2024-07-19 | add `NonZero<uN>::isqrt` | ivan-shrimp | -45/+63 |
| 2024-07-19 | Use `#[rustfmt::skip]` on some `use` groups to prevent reordering. | Nicholas Nethercote | -4/+11 |