| Age | Commit message (Expand) | Author | Lines |
| 2022-03-30 | remove now unnecessary lang items | lcnr | -18/+18 |
| 2022-03-28 | Inline u8::is_utf8_char_boundary | Konrad Borowski | -0/+1 |
| 2022-03-24 | Auto merge of #94517 - aDotInTheVoid:inline_wrapping_next_power_two, r=yaahc | bors | -0/+1 |
| 2022-03-21 | Add u16::is_utf16_surrogate | ltdk | -0/+25 |
| 2022-03-12 | Use `Self::BITS` in `log2` implementation | Nikolai Vazquez | -1/+1 |
| 2022-03-12 | Implement `BITS` constant for non-zero integers | Nikolai Vazquez | -0/+38 |
| 2022-03-11 | Rollup merge of #94838 - antonok-edm:float-parse-docs, r=Dylan-DPC | Dylan DPC | -5/+8 |
| 2022-03-11 | remove unnecessary try_opt for operations that cannot fail | Trevor Spiteri | -3/+6 |
| 2022-03-10 | make float parsing docs more comprehensive | Anton Lazarev | -5/+8 |
| 2022-03-11 | Rollup merge of #93293 - nvzqz:nonzero-min-max, r=joshtriplett | Dylan DPC | -0/+101 |
| 2022-03-10 | Move note about 0 gap to signed integers | Nikolai Vazquez | -8/+8 |
| 2022-03-10 | Use implicit capture syntax in format_args | T-O-R-U-S | -2/+2 |
| 2022-03-06 | Constify slice index for strings | Deadbeef | -1/+1 |
| 2022-03-02 | Mark `uint::wrapping_next_power_of_two` as `#[inline]` | Nixon Enraght-Moony | -0/+1 |
| 2022-02-12 | Stabilise inherent_ascii_escape (FCP in #77174) | ltdk | -2/+1 |
| 2022-02-12 | Fix signature of u8::escape_ascii | ltdk | -2/+2 |
| 2022-02-09 | Rollup merge of #93735 - m-ou-se:stabilize-int-abs-diff, r=joshtriplett | Yuki Okushi | -4/+4 |
| 2022-02-08 | Rollup merge of #86497 - clarfonthey:nearest_char_boundary, r=scottmcm | Matthias Krüger | -0/+5 |
| 2022-02-07 | Add {floor,ceil}_char_boundary methods to str | ltdk | -0/+5 |
| 2022-02-07 | Rollup merge of #93208 - kellerkindt:wrapping_int_assign_impl, r=m-ou-se | Mara Bos | -0/+80 |
| 2022-02-07 | Mark int_abs_diff as const stable. | Mara Bos | -0/+2 |
| 2022-02-07 | Stabilize int_abs_diff in 1.60.0. | Mara Bos | -4/+2 |
| 2022-02-07 | Stabilize wrapping_int_assign_impl in 1.60.0. | Mara Bos | -8/+8 |
| 2022-02-06 | Rollup merge of #90998 - jhpratt:require-const-stability, r=oli-obk | Matthias Krüger | -0/+3 |
| 2022-02-04 | doc: use U+2212 for minus sign in integer MIN/MAX text | Trevor Spiteri | -3/+3 |
| 2022-02-03 | Add missing const stability attributes | Jacob Pratt | -0/+3 |
| 2022-01-30 | review the total_cmp documentation | Simonas Kazlauskas | -38/+54 |
| 2022-01-26 | Unimpl {Add,Sub,Mul,Div,Rem,BitXor,BitOr,BitAnd}<$t> for Saturating<$t> | Michael Watzko | -122/+8 |
| 2022-01-25 | Implement `MIN`/`MAX` constants for non-zero integers | Nikolai Vazquez | -0/+101 |
| 2022-01-25 | Impl {Add,Sub,Mul,Div,Rem,BitXor,BitOr,BitAnd}Assign<$t> for Wrapping<$t> | Michael Watzko | -0/+80 |
| 2022-01-18 | fix typo in `max` description for f32/f64 | klensy | -2/+2 |
| 2022-01-17 | Rollup merge of #92960 - scottmcm:carrying-bignum, r=Mark-Simulacrum | Matthias Krüger | -37/+5 |
| 2022-01-17 | Rollup merge of #92956 - scottmcm:nonzero-log2, r=dtolnay | Matthias Krüger | -141/+197 |
| 2022-01-16 | Auto merge of #92356 - kellerkindt:saturating_int_assign_impl, r=dtolnay | bors | -0/+187 |
| 2022-01-15 | Use `carrying_{mul|add}` in `num::bignum` | Scott McMurray | -37/+5 |
| 2022-01-15 | Add `log2` and `log10` to `NonZeroU*` | Scott McMurray | -141/+197 |
| 2022-01-10 | Simplify BigNum::bit_length() with log2() | Christopher Swenson | -8/+6 |
| 2022-01-10 | Simplification of BigNum::bit_length | Christopher Swenson | -10/+3 |
| 2022-01-08 | Auto merge of #92068 - fee1-dead:libcore2021, r=m-ou-se | bors | -12/+0 |
| 2022-01-06 | add some missing must use to float ops | asquared31415 | -0/+10 |
| 2021-12-28 | Add {Add,Sub,Mul,Div,Rem,BitXor,BitOr,BitAnd}{,Assign}<$t> to Saturating<$t> | Michael Watzko | -0/+187 |
| 2021-12-23 | Switch all libraries to the 2021 edition | Deadbeef | -12/+0 |
| 2021-12-19 | Rollup merge of #91141 - jhpratt:int_roundings, r=joshtriplett | Matthias Krüger | -26/+26 |
| 2021-12-15 | Rollup merge of #91916 - steffahn:fix-typos, r=dtolnay | Matthias Krüger | -2/+2 |
| 2021-12-14 | Fix a bunch of typos | Frank Steffahn | -2/+2 |
| 2021-12-12 | Stabilize asm! and global_asm! | Amanieu d'Antras | -0/+1 |
| 2021-12-10 | Rollup merge of #90897 - jhpratt:fix-incorrect-feature-flags, r=dtolnay | Matthias Krüger | -2/+2 |
| 2021-11-27 | Stabilize nonzero_is_power_of_two | Scott McMurray | -3/+1 |
| 2021-11-22 | Revert "Temporarily rename int_roundings functions to avoid conflicts" | Jacob Pratt | -26/+26 |
| 2021-11-21 | Rollup merge of #91008 - Urgau:float-minimum-maximum, r=scottmcm | Matthias Krüger | -0/+136 |