| Age | Commit message (Expand) | Author | Lines |
| 2022-10-03 | Rollup merge of #101308 - nerdypepper:feature/is-ascii-octdigit, r=joshtriplett | Matthias Krüger | -0/+32 |
| 2022-10-03 | Rollup merge of #100470 - reitermarkus:patch-1, r=joshtriplett | Matthias Krüger | -1/+1 |
| 2022-09-27 | introduce `{char, u8}::is_ascii_octdigit` | Akshay | -0/+32 |
| 2022-09-26 | remove cfg(bootstrap) | Pietro Albini | -2/+0 |
| 2022-09-18 | Add another example for `uN::carrying_mul` | Scott McMurray | -0/+30 |
| 2022-08-22 | Move error trait into core | Jane Losare-Lusby | -0/+12 |
| 2022-08-15 | Fix trailing space showing up in example | Titus | -1/+1 |
| 2022-08-13 | Tweak `FpCategory` example order. | Markus Reiter | -1/+1 |
| 2022-07-11 | Clarify that [iu]size bounds were only defined for the target arch | SOFe | -16/+22 |
| 2022-04-15 | Make some `usize`-typed masks definition agnostic to the size of `usize` | Eduardo Sánchez Muñoz | -0/+21 |
| 2022-04-12 | Fix spelling in docs for can_not_overflow | wcampbell | -1/+1 |
| 2022-04-12 | Auto merge of #95399 - gilescope:plan_b, r=scottmcm | bors | -37/+65 |
| 2022-04-10 | No need to use Default | Giles Cope | -3/+3 |
| 2022-04-10 | Use Add, Sub, Mul traits instead of unsafe | Giles Cope | -40/+20 |
| 2022-04-08 | Use bitwise XOR in to_ascii_uppercase | Redzic | -2/+2 |
| 2022-04-05 | trivial cfg(bootstrap) changes | Pietro Albini | -16/+0 |
| 2022-04-04 | from_u32(0) can just be default() | Giles Cope | -15/+10 |
| 2022-04-02 | need guidence on testing | Giles Cope | -9/+20 |
| 2022-04-02 | incorporating feedback | Giles Cope | -34/+42 |
| 2022-03-31 | Adjust feature names that disagree on const stabilization version | David Tolnay | -1/+1 |
| 2022-03-30 | remove now unnecessary lang items | lcnr | -16/+16 |
| 2022-03-28 | Inline u8::is_utf8_char_boundary | Konrad Borowski | -0/+1 |
| 2022-03-26 | Using macro to avoid performance hit (thanks LingMan) | gilescope | -7/+13 |
| 2022-03-26 | Update library/core/src/num/mod.rs | Squirrel | -1/+1 |
| 2022-03-26 | Better explanation | Giles Cope | -6/+7 |
| 2022-03-26 | Update library/core/src/num/mod.rs | Squirrel | -1/+5 |
| 2022-03-26 | removed likely | Giles Cope | -3/+1 |
| 2022-03-26 | Update library/core/src/num/mod.rs | Squirrel | -2/+2 |
| 2022-03-26 | Update library/core/src/num/mod.rs | Squirrel | -2/+2 |
| 2022-03-26 | add likely and clearer comments | Giles Cope | -3/+13 |
| 2022-03-26 | faster parsing when not possible to overflow | Giles Cope | -35/+50 |
| 2022-03-21 | Add u16::is_utf16_surrogate | ltdk | -0/+25 |
| 2022-03-06 | Constify slice index for strings | Deadbeef | -1/+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-07 | Add {floor,ceil}_char_boundary methods to str | ltdk | -0/+5 |
| 2022-01-15 | Add `log2` and `log10` to `NonZeroU*` | Scott McMurray | -8/+8 |
| 2021-11-19 | Turn all 0x1b_u8 into '\x1b' or b'\x1b' | r00ster91 | -10/+10 |
| 2021-11-12 | Remove bigint_helper_methods for *signed* types | Scott McMurray | -14/+1 |
| 2021-11-05 | Reorder `widening_impl`s to make the doc clearer | Yuki Okushi | -18/+18 |
| 2021-11-04 | Add more text and examples to `carrying_{add|mul}" | Scott McMurray | -15/+48 |
| 2021-10-09 | Add #[must_use] to is_condition tests | John Kugelman | -0/+11 |
| 2021-10-09 | Update library/core/src/num/mod.rs | John Kugelman | -1/+1 |
| 2021-10-09 | Add #[must_use] to string/char transformation methods | John Kugelman | -0/+4 |
| 2021-10-06 | Rollup merge of #88523 - kpreid:category, r=yaahc | Manish Goregaokar | -4/+22 |
| 2021-10-01 | Add functions to add unsigned and signed integers | Benoît du Garreau | -8/+8 |
| 2021-08-31 | Rollup merge of #85017 - clarfonthey:carrying_widening, r=m-ou-se | Mara Bos | -0/+87 |
| 2021-08-30 | Expand documentation for `FpCategory`. | Kevin Reid | -4/+22 |
| 2021-08-26 | Add carrying_add, borrowing_sub, widening_mul, carrying_mul methods to integers | ltdk | -0/+87 |
| 2021-08-10 | Add Saturating type (based on Wrapping type) | Michael Watzko | -0/+4 |