| Age | Commit message (Expand) | Author | Lines |
| 2024-07-03 | core: Limit four f16 doctests to x86_64 linux | Martin Nordholts | -6/+9 |
| 2024-07-02 | Add edge-case examples to `{count,leading,trailing}_{ones,zeros}` methods | Nick Fitzgerald | -6/+35 |
| 2024-07-02 | chore: remove duplicate words | hattizai | -1/+1 |
| 2024-06-30 | Rollup merge of #126906 - GrigorenkoPV:fixme-split_at_first, r=Mark-Simulacrum | Matthias Krüger | -6/+2 |
| 2024-06-29 | Remove uneccessary condition in `div_ceil` | Tobias Decking | -1/+1 |
| 2024-06-27 | fix least significant digits of f128 associated constants | Trevor Spiteri | -3/+3 |
| 2024-06-26 | Auto merge of #126608 - tgross35:f16-f128-library, r=Mark-Simulacrum | bors | -58/+1378 |
| 2024-06-25 | Add more `f16` and `f128` library functions and constants | Trevor Gross | -2/+1250 |
| 2024-06-25 | Add doctests to existing `f16` and `f128` functions | Trevor Gross | -4/+68 |
| 2024-06-25 | Auto merge of #126852 - scottmcm:more-checked-math-tweaks, r=Amanieu | bors | -2/+13 |
| 2024-06-24 | Small fixme in core now that split_first has no codegen issues | Pavel Grigorenko | -6/+2 |
| 2024-06-24 | Small fixme in core now that NonZero is generic | Pavel Grigorenko | -13/+2 |
| 2024-06-24 | Reword docs for `f32` and `f64` | Trevor Gross | -8/+12 |
| 2024-06-24 | Extract repeated constants from `f32` and `f64` source | Trevor Gross | -46/+50 |
| 2024-06-23 | Implement `unsigned_signed_diff` | ilikdoge | -0/+61 |
| 2024-06-23 | Also get `add nuw` from `uN::checked_add` | Scott McMurray | -2/+13 |
| 2024-06-22 | Rollup merge of #126552 - fee1-dead-contrib:rmfx, r=compiler-errors | Matthias Krüger | -4/+2 |
| 2024-06-21 | Remove `feature(effects)` from the standard library | Deadbeef | -4/+2 |
| 2024-06-20 | Stop using `unlikely` in `strict_*` methods | Scott McMurray | -19/+19 |
| 2024-06-17 | Rollup merge of #126468 - RalfJung:euclid, r=Mark-Simulacrum | 许杰友 Jieyou Xu (Joe) | -4/+6 |
| 2024-06-14 | div_euclid, rem_euclid: clarify/extend documentation | Ralf Jung | -4/+6 |
| 2024-06-13 | Fix wording in {checked_}next_power_of_two | Christiaan Biesterbosch | -3/+3 |
| 2024-06-11 | remove cfg(bootstrap) | Pietro Albini | -11/+7 |
| 2024-06-11 | Skip fast path for dec2flt when optimize_for_size | Dion Dokter | -2/+4 |
| 2024-06-10 | Rollup merge of #126191 - ivan-shrimp:nonzero_doc, r=scottmcm | Matthias Krüger | -10/+32 |
| 2024-06-09 | Rollup merge of #125253 - sunsided:feature/FRAC_1_SQRT_PI, r=Mark-Simulacrum | 许杰友 Jieyou Xu (Joe) | -0/+23 |
| 2024-06-09 | fix `NonZero` doctest inconsistencies | ivan-shrimp | -10/+32 |
| 2024-06-02 | Rollup merge of #125884 - Rua:integer_sign_cast, r=Mark-Simulacrum | Jubilee | -0/+48 |
| 2024-06-02 | Rollup merge of #121062 - RustyYato:f32-midpoint, r=the8472 | Jubilee | -19/+36 |
| 2024-06-02 | Wording of the documentation | Rua | -4/+4 |
| 2024-06-02 | Implement feature `integer_sign_cast` | Rua | -0/+48 |
| 2024-06-01 | Change f32::midpoint to upcast to f64 | RustyYato | -19/+36 |
| 2024-06-02 | Auto merge of #124294 - tspiteri:ilog-first-iter, r=the8472 | bors | -2/+5 |
| 2024-05-29 | Add FRAC_1_SQRT_2PI doc alias to FRAC_1_SQRT_TAU | Markus Mayer | -0/+4 |
| 2024-05-29 | Add FRAC_1_SQRT_2PI constant to f16/f32/f64/f128 | Markus Mayer | -0/+19 |
| 2024-05-26 | Rollup merge of #125559 - scottmcm:simplify-shift-ubcheck, r=workingjubilee | Jubilee | -8/+4 |
| 2024-05-26 | Rollup merge of #125571 - tesuji:dummy-pi, r=Nilstrieb | Matthias Krüger | -4/+4 |
| 2024-05-26 | f32: use constants instead of reassigning a dummy value as PI | Lzu Tao | -4/+4 |
| 2024-05-25 | Simplify the `unchecked_sh[lr]` ub-checks a bit | Scott McMurray | -8/+4 |
| 2024-05-23 | Add assert_unsafe_precondition to unchecked_{add,sub,neg,mul,shl,shr} methods | ltdk | -33/+147 |
| 2024-05-16 | Add doctests for f16 and f128 library functions where possible | Trevor Gross | -1/+40 |
| 2024-05-12 | reverse condition in `uN::checked_sub` | ivan-shrimp | -3/+3 |
| 2024-05-10 | Auto merge of #124863 - DaniPopes:from-str-radix-panic, r=Amanieu | bors | -6/+6 |
| 2024-05-08 | Use generic `NonZero` in examples. | Markus Reiter | -183/+181 |
| 2024-05-08 | Rollup merge of #124838 - RalfJung:next_power_of_two, r=scottmcm | Jubilee | -0/+1 |
| 2024-05-08 | from_str_radix: outline only the panic function | DaniPopes | -6/+6 |
| 2024-05-07 | next_power_of_two: add a doctest to show what happens on 0 | Ralf Jung | -0/+1 |
| 2024-05-06 | f16::is_sign_{positive,negative} were feature-gated on f128 | Trevor Spiteri | -2/+2 |
| 2024-05-06 | Auto merge of #123850 - tspiteri:f16_f128_consts, r=Amanieu | bors | -4/+382 |
| 2024-05-04 | Rollup merge of #124701 - scottmcm:unchecked_sub_docs, r=Nilstrieb | Matthias Krüger | -0/+25 |