| Age | Commit message (Expand) | Author | Lines |
| 2020-07-02 | Rollup merge of #73938 - nbdd0121:checked_opt, r=nagisa | Manish Goregaokar | -27/+43 |
| 2020-07-01 | Optimise fast path of checked_ops with `unlikely` | Gary Guo | -27/+43 |
| 2020-06-30 | Deny unsafe ops in unsafe fns, part 6 | LeSeulArtichaut | -1/+0 |
| 2020-06-30 | Deny unsafe ops in unsafe fns, part 3 | LeSeulArtichaut | -7/+21 |
| 2020-06-29 | Auto merge of #73032 - yoshuawuyts:stabilize-leading_trailing_ones, r=Amanieu | bors | -12/+12 |
| 2020-06-28 | Remove `const_if_match` feature gate from libraries | Dylan MacKenzie | -3/+3 |
| 2020-06-12 | Rollup merge of #72906 - lzutao:migrate-numeric-assoc-consts, r=dtolnay | Dylan DPC | -33/+33 |
| 2020-06-11 | Update src/libcore/num/mod.rs | Amanieu d'Antras | -2/+2 |
| 2020-06-10 | Fix doctest template | Mihail Malo | -1/+2 |
| 2020-06-10 | Migrate to numeric associated consts | Lzu Tao | -33/+33 |
| 2020-06-05 | stabilize leading_trailing_ones | Yoshua Wuyts | -12/+12 |
| 2020-05-19 | Rollup merge of #71886 - t-rapp:tr-saturating-funcs, r=dtolnay | Dylan DPC | -6/+4 |
| 2020-05-16 | Rollup merge of #72224 - lzutao:links, r=Dylan-DPC | Dylan DPC | -8/+8 |
| 2020-05-15 | Auto merge of #69659 - CAD97:step-rework-take-3, r=Amanieu | bors | -0/+102 |
| 2020-05-15 | doc: add links to rotate_(left|right) | Lzu Tao | -8/+8 |
| 2020-05-04 | Stabilize saturating_abs and saturating_neg | Tobias Rapp | -6/+4 |
| 2020-04-26 | Fix since attribute for nonzero_bitor impl's | Jonas Platte | -5/+5 |
| 2020-04-25 | Rollup merge of #69813 - thomcc:nonzero-bitor, r=Amanieu | Dylan DPC | -0/+52 |
| 2020-04-08 | Add inherent impls for unchecked math intrinsics | CAD97 | -0/+102 |
| 2020-04-03 | Make documentation examples use new integer assoc consts | Linus Färnstrand | -1/+1 |
| 2020-04-02 | Fix typo in u8::to_ascii_uppercase and u8::to_ascii_lowercase | Pocakking | -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 | -135/+129 |
| 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-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_value() docs | Linus Färnstrand | -40/+60 |
| 2020-02-12 | Stabilize assoc_int_consts | Linus Färnstrand | -8/+4 |
| 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 | -23/+51 |
| 2020-01-29 | Document `From` implementation for NonZero nums | LeSeulArtichaut | -2/+6 |