| Age | Commit message (Expand) | Author | Lines |
| 2020-04-20 | Stop accessing module level int consts via crate::<Ty> | Linus Färnstrand | -1/+0 |
| 2020-04-16 | Dogfood or_patterns in the standard library | Josh Stone | -4/+4 |
| 2020-04-08 | Add inherent impls for unchecked math intrinsics | CAD97 | -0/+102 |
| 2020-04-05 | Make libcore float constant examples similar to libstd | Linus Färnstrand | -12/+4 |
| 2020-04-03 | Make documentation examples use new integer assoc consts | Linus Färnstrand | -3/+3 |
| 2020-04-03 | Rollup merge of #70708 - Pocakking:fix-ascii-case-conv-typo, r=sfackler | Mazdak Farrokhzad | -2/+2 |
| 2020-04-02 | Fix typo in u8::to_ascii_uppercase and u8::to_ascii_lowercase | Pocakking | -2/+2 |
| 2020-03-29 | Stabilize float::to_int_unchecked | Mark Rousskov | -14/+10 |
| 2020-03-26 | Rename asm! to llvm_asm! | Amanieu d'Antras | -2/+2 |
| 2020-03-13 | update stable-since version for const_int_conversion | Trevor Spiteri | -12/+12 |
| 2020-03-11 | Rollup merge of #69373 - tspiteri:const_int_conversion, r=oli-obk | Mazdak Farrokhzad | -16/+48 |
| 2020-03-07 | Implement BitOr and BitOrAssign for the NonZero integer types | Thom Chiovoloni | -0/+52 |
| 2020-03-04 | Auto merge of #68952 - faern:stabilize-assoc-int-consts, r=dtolnay | bors | -210/+255 |
| 2020-02-26 | Rollup merge of #69209 - Mark-Simulacrum:strip-unsafe, r=dtolnay | Dylan DPC | -17/+15 |
| 2020-02-26 | use unions instead of transmute and add const safety comments | Trevor Spiteri | -8/+36 |
| 2020-02-22 | Rollup merge of #68984 - ecstatic-morse:const-u8-is-ascii, r=sfackler | Dylan DPC | -1/+2 |
| 2020-02-22 | Stabilize const for integer {to,from}_{be,le,ne}_bytes methods | Trevor Spiteri | -12/+16 |
| 2020-02-20 | Rollup merge of #68978 - ecstatic-morse:const-int-pow, r=oli-obk | Dylan DPC | -23/+46 |
| 2020-02-17 | Drop unused argument to float functions | Mark Rousskov | -2/+0 |
| 2020-02-16 | Stabilize {f32, f64}::{LOG2_10, LOG10_2} | LeSeulArtichaut | -4/+4 |
| 2020-02-15 | Formatter::sign is &'static str | Mark Rousskov | -15/+15 |
| 2020-02-12 | Add usage recommendation to old float constants | Linus Färnstrand | -0/+28 |
| 2020-02-12 | Update float documentation to use associated consts | Linus Färnstrand | -22/+2 |
| 2020-02-12 | Add notice about using new consts in new code on int modules | Linus Färnstrand | -0/+36 |
| 2020-02-12 | Add notice about using new consts in new code on float modules | Linus Färnstrand | -0/+6 |
| 2020-02-12 | Remove uint_macros that was identical to int_macros | Linus Färnstrand | -41/+13 |
| 2020-02-12 | Replace min/max_value() with MIN/MAX in integer docs | Linus Färnstrand | -52/+52 |
| 2020-02-12 | Use new preferred consts in int docs | Linus Färnstrand | -35/+13 |
| 2020-02-12 | Add "soft deprecation" notice to old MIN/MAX docs | Linus Färnstrand | -12/+41 |
| 2020-02-12 | Add "soft deprecation" notice to old min/max_value() docs | Linus Färnstrand | -40/+60 |
| 2020-02-12 | Stabilize assoc_int_consts | Linus Färnstrand | -36/+32 |
| 2020-02-10 | Rollup merge of #68986 - ecstatic-morse:const-ascii-ctype, r=Centril | Dylan DPC | -10/+20 |
| 2020-02-08 | Make `u8::is_ascii` a stable `const fn` | Dylan MacKenzie | -1/+2 |
| 2020-02-08 | Make the ASCII ctype inherent methods const | Dylan MacKenzie | -10/+20 |
| 2020-02-08 | Make integer power methods const | Dylan MacKenzie | -14/+28 |
| 2020-02-08 | Use bespoke macro instead of `?` inside const fns | Dylan MacKenzie | -6/+16 |
| 2020-02-08 | [!] Use `rustc_inherit_overflow_checks` in `next_power_of_two` | Dylan MacKenzie | -3/+2 |
| 2020-02-08 | Make `num::NonZeroX::new` an unstable `const fn` | Dylan MacKenzie | -1/+2 |
| 2020-02-04 | Use consistent feature naming | Dylan MacKenzie | -45/+45 |
| 2020-02-04 | Make saturating arithmetic using intrinsics `const` | Dylan MacKenzie | -2/+4 |
| 2020-02-04 | Make checked division `const` | Dylan MacKenzie | -4/+8 |
| 2020-02-04 | Make wrapping arithmetic `const` | Dylan MacKenzie | -4/+8 |
| 2020-02-04 | Make `saturating_mul` a `const fn` | Dylan MacKenzie | -6/+12 |
| 2020-02-04 | Make overflowing arithmetic `const` | Dylan MacKenzie | -4/+8 |
| 2020-02-04 | Make checked arithmetic besides division `const` | Dylan MacKenzie | -13/+26 |
| 2020-02-04 | Make euclidean division `const` | Dylan MacKenzie | -16/+32 |
| 2020-01-30 | Auto merge of #68325 - faern:move-numeric-consts-to-associated-consts-step1, ... | bors | -56/+191 |
| 2020-01-29 | Document `From` implementation for NonZero nums | LeSeulArtichaut | -2/+6 |
| 2020-01-23 | Unlock assoc_int_consts in documentation examples using it | Linus Färnstrand | -0/+4 |
| 2020-01-23 | Fix some float operations to work together with the assoc consts | Linus Färnstrand | -5/+5 |