| Age | Commit message (Expand) | Author | Lines |
| 2013-05-14 | Use static string with fail!() and remove fail!(fmt!()) | Björn Steinbrink | -5/+5 |
| 2013-05-10 | core: Use the new `for` protocol | Alex Crichton | -8/+34 |
| 2013-05-08 | Remove #[cfg(notest)] and use #[cfg(not(test))] to cooincide with #[cfg(debug)] | Zack Corr | -14/+14 |
| 2013-05-04 | Register snapshots | Brian Anderson | -6/+1 |
| 2013-05-02 | libcore: Export core::from_str::FromStr from core::prelude | gifnksm | -1/+0 |
| 2013-05-01 | Revert rename of Div to Quot | Brendan Zabarauskas | -17/+12 |
| 2013-04-29 | Rename 'divisible_by' method to 'is_multiple_of', add tests for 'is_odd' and ... | Brendan Zabarauskas | -2/+27 |
| 2013-04-27 | Add Orderable trait | Brendan Zabarauskas | -0/+29 |
| 2013-04-26 | Combine PrimitiveInt, Int, and Uint traits into one single trait | Brendan Zabarauskas | -3/+1 |
| 2013-04-26 | Add BitCount trait | Brendan Zabarauskas | -1/+6 |
| 2013-04-26 | Add Int, Uint and Float traits for primitive numbers | Brendan Zabarauskas | -0/+2 |
| 2013-04-26 | Add Bitwise, Bounded, Primitive, and PrimitiveInt traits | Brendan Zabarauskas | -0/+18 |
| 2013-04-26 | Use `///` doc-comment form instead of `/** */` | Brendan Zabarauskas | -4/+3 |
| 2013-04-26 | Add is_zero method to Zero | Brendan Zabarauskas | -3/+6 |
| 2013-04-25 | Use borrowed pointers for Integer methods | Brendan Zabarauskas | -23/+23 |
| 2013-04-25 | Rename Natural to Integer | Brendan Zabarauskas | -1/+1 |
| 2013-04-25 | Use #[cfg(not(stage0))] to exclude items from stage0 | Brendan Zabarauskas | -8/+2 |
| 2013-04-25 | Move impls of `Num` out of core::num and clean up imports | Brendan Zabarauskas | -4/+7 |
| 2013-04-24 | Implement Natural trait | Brendan Zabarauskas | -0/+72 |
| 2013-04-24 | Implement Signed and Unsigned traits and remove related predicate functions | Brendan Zabarauskas | -9/+3 |
| 2013-04-23 | inline the primitive numeric operations | Daniel Micay | -0/+18 |
| 2013-04-22 | Rename Div operator trait to Quot and Modulo operator trait to Rem | Brendan Zabarauskas | -22/+28 |
| 2013-04-19 | librustc: WIP patch for using the return value. | Patrick Walton | -1/+1 |
| 2013-04-19 | Use assert_eq! instead of assert! and remove extraneous parentheses | Brendan Zabarauskas | -50/+48 |
| 2013-04-18 | Add #[inline(always)] to each operator method | Brendan Zabarauskas | -0/+13 |
| 2013-04-18 | Implement bitwise operator traits for ints and uints | Brendan Zabarauskas | -0/+35 |
| 2013-04-16 | libcore,std,syntax,rustc: move tests into `mod tests`, make them private (no ... | Huon Wilson | -155/+161 |
| 2013-04-14 | Consolidate tests of numeric operations | Brendan Zabarauskas | -12/+0 |
| 2013-04-09 | auto merge of #5769 : gifnksm/rust/range_step, r=bstrie | bors | -6/+25 |
| 2013-04-08 | libcore: from_str_common: provide option to ignore underscores. | Huon Wilson | -3/+3 |
| 2013-04-07 | libcore: fix overflow/underflow in range_step | gifnksm | -6/+25 |
| 2013-03-29 | librustc: Remove `fail_unless!` | Patrick Walton | -53/+53 |
| 2013-03-28 | Removing unused imports | Alex Crichton | -1/+1 |
| 2013-03-22 | librustc: Remove the `const` declaration form everywhere | Patrick Walton | -4/+4 |
| 2013-03-22 | libcore: Remove `pure` from libcore. rs=depure | Patrick Walton | -43/+43 |
| 2013-03-22 | librustc: Remove all uses of `static` from functions. rs=destatic | Patrick Walton | -4/+4 |
| 2013-03-11 | libsyntax: Stop parsing bare functions in preparation for switching them over | Patrick Walton | -1/+4 |
| 2013-03-11 | librustc: Replace all uses of `fn()` with `&fn()`. rs=defun | Patrick Walton | -4/+4 |
| 2013-03-07 | test: Fix tests. | Patrick Walton | -2/+4 |
| 2013-03-07 | librustc: Convert all uses of `assert` over to `fail_unless!` | Patrick Walton | -56/+56 |
| 2013-03-04 | Adding missing imports for tests, and gate off others | Alex Crichton | -1/+2 |
| 2013-03-04 | Remove unused imports throughout src/ | Alex Crichton | -9/+0 |
| 2013-02-26 | Removed deprecated `str()` functions in int-template.rs and uint-template.rs | Marvin Löbel | -5/+0 |
| 2013-02-15 | Removed generic infinity, NaN and negative zero functions | Marvin Löbel | -12/+0 |
| 2013-02-15 | Made num <-> str conversion functions use NumStrConv trait | Marvin Löbel | -3/+3 |
| 2013-02-15 | Moved numeric string conversion functions into own module | Marvin Löbel | -12/+13 |
| 2013-02-14 | librustc: Replace `impl Type : Trait` with `impl Trait for Type`. rs=implflip... | Patrick Walton | -9/+9 |
| 2013-02-14 | libcore: Move the numeric operations out of Num. r=brson | Patrick Walton | -15/+25 |
| 2013-02-13 | Remove die!, raplace invocations with fail! Issue #4524 pt 3 | Nick Desaulniers | -5/+5 |
| 2013-02-13 | core: add min and max to cmp, re-export various places. | Graydon Hoare | -5/+2 |