| Age | Commit message (Expand) | Author | Lines |
| 2014-11-13 | Remove Signed trait and add SignedInt trait | Brendan Zabarauskas | -116/+146 |
| 2014-11-13 | Remove lots of numeric traits from the preludes | Brendan Zabarauskas | -0/+26 |
| 2014-11-13 | Clean up core::num doc comments | Brendan Zabarauskas | -50/+45 |
| 2014-11-13 | Deprecate signum wrapper and clean up signed impls | Brendan Zabarauskas | -38/+42 |
| 2014-11-13 | Deprecate Num, Unsigned and Primitive | Brendan Zabarauskas | -46/+60 |
| 2014-11-13 | Deprecate Zero and One traits | Brendan Zabarauskas | -121/+111 |
| 2014-11-13 | Deprecate Bounded trait | Brendan Zabarauskas | -57/+86 |
| 2014-11-13 | Move checked arithmetic operators into Int trait | Brendan Zabarauskas | -220/+191 |
| 2014-11-13 | Rejig Int impl macros | Brendan Zabarauskas | -20/+32 |
| 2014-11-13 | Move saturating operator methods into Int | Brendan Zabarauskas | -37/+22 |
| 2014-11-13 | Create UnsignedInt trait and deprecate free functions | Brendan Zabarauskas | -29/+50 |
| 2014-11-13 | Move abs_sub to FloatMath | Brendan Zabarauskas | -22/+0 |
| 2014-11-13 | Deprecate Signed method wrappers | Brendan Zabarauskas | -19/+7 |
| 2014-11-13 | Take parameters by-value in Signed trait | Brendan Zabarauskas | -27/+27 |
| 2014-11-08 | Make Int inherit from Ord. | Josh Haberman | -1/+2 |
| 2014-10-30 | rollup merge of #18398 : aturon/lint-conventions-2 | Alex Crichton | -3/+3 |
| 2014-10-30 | rollup merge of #18421 : tbu-/pr_checkeddiv1 | Alex Crichton | -1/+1 |
| 2014-10-30 | rollup merge of #18392 : cakebaker/remove_double_negation | Alex Crichton | -1/+1 |
| 2014-10-29 | Rename fail! to panic! | Steve Klabnik | -1/+1 |
| 2014-10-29 | Fix `core::num::CheckedDiv::checked_div` documentation | Tobias Bucher | -1/+1 |
| 2014-10-28 | Update code with new lint names | Aaron Turon | -3/+3 |
| 2014-10-28 | Remove double negation from sqrt's doc comment | Daniel Hofstetter | -1/+1 |
| 2014-10-21 | Correct case where the old version of method lookup was incorrectly matching, | Niko Matsakis | -2/+2 |
| 2014-10-20 | Handle negative numbers in `sqrt` properly. | Huon Wilson | -3/+12 |
| 2014-10-09 | core: Convert statics to constants | Alex Crichton | -74/+74 |
| 2014-09-17 | doc: Cleanup. | Jonas Hietala | -4/+4 |
| 2014-09-05 | Make integer bit count methods return uints | Brendan Zabarauskas | -10/+10 |
| 2014-08-26 | Added a note for usage of abs with ::MIN. | Robert Gawdzik ☢ | -2/+6 |
| 2014-08-19 | auto merge of #16364 : tbu-/rust/pr_checkeddiv0, r=alexcrichton | bors | -3/+5 |
| 2014-08-08 | Add division by zero case to the `CheckedDiv` comment | Tobias Bucher | -3/+5 |
| 2014-08-08 | libcore: Fix documentation comment for f32. | Ruud van Asseldonk | -1/+1 |
| 2014-08-04 | num: Fix the documentation of abs_sub. | OGINO Masanori | -2/+2 |
| 2014-08-01 | doc: fix typos in std::num::Int | Tshepang Lekhonkhobe | -2/+2 |
| 2014-07-29 | Improve documentation of rounding functions | Piotr Jawniak | -35/+34 |
| 2014-07-24 | Add examples for Checked[Add|Sub|Mul|Div] | nham | -0/+32 |
| 2014-07-24 | auto merge of #15407 : sneves/rust/master, r=aturon | bors | -8/+8 |
| 2014-07-22 | Clean up some trait impls in core::num. | Tobias Bucher | -18/+7 |
| 2014-07-21 | Add a ton of ignore-lexer-test | Corey Richardson | -0/+2 |
| 2014-07-10 | Add range lint for float literals, fixing #10934 | Falco Hirschenberger | -0/+4 |
| 2014-07-08 | make macros non-capturing | John Clements | -67/+67 |
| 2014-07-04 | Change Shl<T, T> for Int to Shl<uint, T> | Samuel Neves | -8/+8 |
| 2014-07-02 | Fix rotate_{left, right} for multiple of bitsize rotation amounts | Samuel Neves | -2/+2 |
| 2014-06-29 | Extract tests from libcore to a separate crate | Steven Fackler | -271/+0 |
| 2014-06-24 | std: Add stability attributes to primitive numeric modules | Brian Anderson | -0/+18 |
| 2014-06-24 | librustc: Remove the fallback to `int` from typechecking. | Niko Matsakis | -7/+7 |
| 2014-06-18 | Update doc comment for Int trait | Brendan Zabarauskas | -1/+2 |
| 2014-06-18 | Shorten endian conversion method names | Brendan Zabarauskas | -44/+44 |
| 2014-06-18 | Merge the Bitwise and ByteOrder traits into the Int trait | Brendan Zabarauskas | -133/+310 |
| 2014-06-18 | Add a ByteOrder trait for abstracting over endian conversions | Brendan Zabarauskas | -70/+24 |
| 2014-06-13 | Add Bitwise::{swap_bytes, rotate_left, rotate_right} methods | Brendan Zabarauskas | -20/+152 |