| Age | Commit message (Expand) | Author | Lines |
| 2013-04-29 | Revert "Merge Exponential and Hyperbolic traits" | Brendan Zabarauskas | -0/+2 |
| 2013-04-29 | Merge Exponential and Hyperbolic traits | Brendan Zabarauskas | -2/+0 |
| 2013-04-29 | Move appropriate functions out of Real and into separate Algebraic, Trigonome... | Brendan Zabarauskas | -69/+110 |
| 2013-04-27 | Propagate NaNs for Orderable methods impled on floating-point primitives | Brendan Zabarauskas | -5/+19 |
| 2013-04-27 | Rename `nextafter` to `next_after` to match method name in Float | Brendan Zabarauskas | -2/+2 |
| 2013-04-27 | Add additional constants to primitive floating point numbers | Brendan Zabarauskas | -0/+29 |
| 2013-04-27 | Add mul_add and next_after methods to Float | Brendan Zabarauskas | -0/+16 |
| 2013-04-27 | Add Orderable trait | Brendan Zabarauskas | -0/+29 |
| 2013-04-26 | Add Int, Uint and Float traits for primitive numbers | Brendan Zabarauskas | -12/+34 |
| 2013-04-26 | Add Bitwise, Bounded, Primitive, and PrimitiveInt traits | Brendan Zabarauskas | -0/+14 |
| 2013-04-26 | Minor style improvements for test functions | Brendan Zabarauskas | -1/+1 |
| 2013-04-26 | Use `///` doc-comment form instead of `/** */` | Brendan Zabarauskas | -155/+155 |
| 2013-04-26 | Add is_zero method to Zero | Brendan Zabarauskas | -9/+11 |
| 2013-04-25 | Restore Round trait and move appropriate methods out of Real | Brendan Zabarauskas | -25/+98 |
| 2013-04-25 | Add Fractional, Real and RealExt traits | Brendan Zabarauskas | -26/+223 |
| 2013-04-25 | Use #[cfg(not(stage0))] to exclude items from stage0 | Brendan Zabarauskas | -6/+2 |
| 2013-04-25 | Move impls of `Num` out of core::num and clean up imports | Brendan Zabarauskas | -14/+10 |
| 2013-04-24 | Implement Signed and Unsigned traits and remove related predicate functions | Brendan Zabarauskas | -60/+74 |
| 2013-04-23 | inline the primitive numeric operations | Daniel Micay | -0/+9 |
| 2013-04-22 | Rename Div operator trait to Quot and Modulo operator trait to Rem | Brendan Zabarauskas | -16/+29 |
| 2013-04-21 | librustc: use LLVM intrinsics for several floating point operations. | Huon Wilson | -1/+1 |
| 2013-04-19 | Use assert_eq! instead of assert! and remove extraneous parentheses | Brendan Zabarauskas | -96/+96 |
| 2013-04-18 | Add #[inline(always)] to each operator method | Brendan Zabarauskas | -0/+12 |
| 2013-04-16 | libcore,std,syntax,rustc: move tests into `mod tests`, make them private (no ... | Huon Wilson | -196/+199 |
| 2013-04-14 | core: remove unnecessary unsafe blocks/functions | Alex Crichton | -6/+6 |
| 2013-04-14 | Consolidate tests of numeric operations | Brendan Zabarauskas | -12/+0 |
| 2013-04-14 | Generate NumCast impls and tests using macros | Brendan Zabarauskas | -70/+0 |
| 2013-04-08 | libcore: from_str_common: provide option to ignore underscores. | Huon Wilson | -3/+3 |
| 2013-03-29 | librustc: Remove `fail_unless!` | Patrick Walton | -169/+169 |
| 2013-03-28 | Removing unused imports | Alex Crichton | -1/+2 |
| 2013-03-22 | librustc: Remove the `const` declaration form everywhere | Patrick Walton | -18/+18 |
| 2013-03-22 | libcore: Remove `pure` from libcore. rs=depure | Patrick Walton | -60/+60 |
| 2013-03-22 | librustc: Remove all uses of `static` from functions. rs=destatic | Patrick Walton | -5/+5 |
| 2013-03-07 | librustc: Convert all uses of `assert` over to `fail_unless!` | Patrick Walton | -169/+169 |
| 2013-03-04 | Adding missing imports for tests, and gate off others | Alex Crichton | -2/+3 |
| 2013-03-04 | Remove unused imports throughout src/ | Alex Crichton | -5/+0 |
| 2013-02-27 | librustc: Forbid `pub` or `priv` before trait implementations | Patrick Walton | -1/+1 |
| 2013-02-15 | auto merge of #4957 : Kimundi/rust/incoming, r=catamorphism | bors | -14/+19 |
| 2013-02-15 | librustc: Stop parsing `impl Type : Trait` and fix several declarations that ... | Patrick Walton | -1/+1 |
| 2013-02-15 | Made num <-> str conversion functions use NumStrConv trait | Marvin Löbel | -6/+6 |
| 2013-02-15 | Moved numeric string conversion functions into own module | Marvin Löbel | -14/+19 |
| 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 | -16/+27 |
| 2013-02-13 | Remove die!, raplace invocations with fail! Issue #4524 pt 3 | Nick Desaulniers | -7/+7 |
| 2013-02-11 | Add NumCast trait for generic numeric type casts | Brendan Zabarauskas | -20/+78 |
| 2013-02-07 | Make ~fn non-copyable, make &fn copyable, split barefn/closure types, | Niko Matsakis | -4/+0 |
| 2013-02-03 | core: convert ToStr::to_str to take explicit &self | Erick Tryzelaar | -1/+1 |
| 2013-02-03 | Solved float, f32 and f64 `to_str_radix()` special value ambiguity. | Marvin Löbel | -1/+23 |
| 2013-02-03 | Fixed errors resulting from rebase. | Marvin Löbel | -5/+5 |
| 2013-02-03 | Converted the floating point types to the new string conversion functions. | Marvin Löbel | -206/+221 |