| Age | Commit message (Expand) | Author | Lines |
| 2023-10-26 | Refactor some `char`, `u8` ascii functions to be branchless | okaneco | -3/+6 |
| 2023-10-23 | fix typos in comments | GoodDaisy | -1/+1 |
| 2023-10-03 | Bump version placeholders | Mark Rousskov | -1/+1 |
| 2023-09-03 | Stabilize the Saturating type (saturating_int_impl, gh-87920) | Michael Watzko | -2/+1 |
| 2023-06-16 | [libs] Simplify `unchecked_{shl,shr}` | Scott McMurray | -12/+5 |
| 2023-05-14 | Auto merge of #92048 - Urgau:num-midpoint, r=scottmcm | bors | -0/+59 |
| 2023-05-03 | Add the basic `ascii::Char` type | Scott McMurray | -1/+10 |
| 2023-04-26 | Implement midpoint for all signed and unsigned integers | Loïc BRANSTETT | -0/+59 |
| 2023-04-17 | fix codegen difference | Deadbeef | -0/+18 |
| 2023-04-16 | more hacks | Deadbeef | -1/+0 |
| 2023-03-27 | Fix ASCII case comment | clubby789 | -1/+1 |
| 2023-02-20 | Use named arguments for `int_impl` macro | Nilstrieb | -34/+162 |
| 2023-02-20 | Use named arguments for `uint_impl` macro | Nilstrieb | -33/+155 |
| 2023-02-10 | Remove a couple of `#[doc(hidden)] pub fn` and their `#[feature]` gates | Tobias Bucher | -12/+0 |
| 2022-12-08 | Fix warning when libcore is compiled with no_fp_fmt_parse | Gary Guo | -1/+3 |
| 2022-10-23 | `unchecked_{shl|shr}` should use `u32` as the RHS | Scott McMurray | -0/+1 |
| 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 |