| Age | Commit message (Expand) | Author | Lines |
| 2013-05-07 | Fix order of methods | Brendan Zabarauskas | -24/+26 |
| 2013-05-07 | Implement exp_m1 and ln_1p as methods for Float | Brendan Zabarauskas | -22/+65 |
| 2013-05-07 | Switch to using 'ln' for the natural logarithm and 'log' for arbitrary base l... | Brendan Zabarauskas | -36/+49 |
| 2013-05-06 | Add assert_approx_eq! macro | Brendan Zabarauskas | -223/+195 |
| 2013-05-06 | Move FuzzyEq trait into core::cmp and rename it to 'ApproxEq' | Brendan Zabarauskas | -2/+78 |
| 2013-05-04 | Register snapshots | Brian Anderson | -58/+6 |
| 2013-05-02 | libcore: Export core::from_str::FromStr from core::prelude | gifnksm | -8/+3 |
| 2013-05-02 | Remove 'Local Variable' comments | Brendan Zabarauskas | -41/+0 |
| 2013-05-01 | Revert rename of Div to Quot | Brendan Zabarauskas | -126/+99 |
| 2013-04-29 | auto merge of #6110 : bjz/rust/numeric-traits, r=pcwalton | bors | -252/+354 |
| 2013-04-29 | Revert "Merge Exponential and Hyperbolic traits" | Brendan Zabarauskas | -3/+9 |
| 2013-04-29 | Merge Exponential and Hyperbolic traits | Brendan Zabarauskas | -9/+3 |
| 2013-04-29 | Rename 'divisible_by' method to 'is_multiple_of', add tests for 'is_odd' and ... | Brendan Zabarauskas | -5/+67 |
| 2013-04-29 | Move appropriate functions out of Real and into separate Algebraic, Trigonome... | Brendan Zabarauskas | -247/+287 |
| 2013-04-28 | make way for a new iter module | Daniel Micay | -1/+1 |
| 2013-04-27 | Propagate NaNs for Orderable methods impled on floating-point primitives | Brendan Zabarauskas | -15/+75 |
| 2013-04-27 | Fix copy-paste mistakes | Brendan Zabarauskas | -5/+5 |
| 2013-04-27 | Remove unnecessary fallbacks | Brendan Zabarauskas | -82/+0 |
| 2013-04-27 | Rename `nextafter` to `next_after` to match method name in Float | Brendan Zabarauskas | -8/+9 |
| 2013-04-27 | Add additional constants to primitive floating point numbers | Brendan Zabarauskas | -1/+96 |
| 2013-04-27 | Add mul_add and next_after methods to Float | Brendan Zabarauskas | -2/+55 |
| 2013-04-27 | Add Orderable trait | Brendan Zabarauskas | -2/+152 |
| 2013-04-26 | Combine PrimitiveInt, Int, and Uint traits into one single trait | Brendan Zabarauskas | -22/+6 |
| 2013-04-26 | Add BitCount trait | Brendan Zabarauskas | -14/+285 |
| 2013-04-26 | Add Int, Uint and Float traits for primitive numbers | Brendan Zabarauskas | -48/+120 |
| 2013-04-26 | Add Bitwise, Bounded, Primitive, and PrimitiveInt traits | Brendan Zabarauskas | -0/+254 |
| 2013-04-26 | Minor style improvements for test functions | Brendan Zabarauskas | -5/+2 |
| 2013-04-26 | Use `///` doc-comment form instead of `/** */` | Brendan Zabarauskas | -663/+662 |
| 2013-04-26 | Add is_zero method to Zero | Brendan Zabarauskas | -37/+40 |
| 2013-04-25 | Restore Round trait and move appropriate methods out of Real | Brendan Zabarauskas | -65/+305 |
| 2013-04-25 | Add Fractional, Real and RealExt traits | Brendan Zabarauskas | -71/+722 |
| 2013-04-25 | Use borrowed pointers for Integer methods | Brendan Zabarauskas | -71/+71 |
| 2013-04-25 | Rename Natural to Integer | Brendan Zabarauskas | -3/+3 |
| 2013-04-25 | Use #[cfg(not(stage0))] to exclude items from stage0 | Brendan Zabarauskas | -39/+11 |
| 2013-04-25 | Move impls of `Num` out of core::num and clean up imports | Brendan Zabarauskas | -77/+53 |
| 2013-04-24 | Removed ascii functions from other modules | Marvin Löbel | -7/+0 |
| 2013-04-24 | Implement Natural trait | Brendan Zabarauskas | -0/+333 |
| 2013-04-24 | Implement Signed and Unsigned traits and remove related predicate functions | Brendan Zabarauskas | -159/+292 |
| 2013-04-23 | auto merge of #6034 : thestinger/rust/num, r=catamorphism,pcwalton | bors | -0/+58 |
| 2013-04-23 | inline the primitive numeric operations | Daniel Micay | -0/+58 |
| 2013-04-23 | Attempt to fix x86 only strconv test failure | Marvin Löbel | -3/+2 |
| 2013-04-22 | core: ignore test from_str_ignore_underscores. Broken on i686. #6018 | Brian Anderson | -0/+1 |
| 2013-04-22 | Rename Div operator trait to Quot and Modulo operator trait to Rem | Brendan Zabarauskas | -107/+192 |
| 2013-04-21 | librustc: use LLVM intrinsics for several floating point operations. | Huon Wilson | -153/+166 |
| 2013-04-19 | librustc: WIP patch for using the return value. | Patrick Walton | -2/+2 |
| 2013-04-19 | Use assert_eq! instead of assert! and remove extraneous parentheses | Brendan Zabarauskas | -267/+260 |
| 2013-04-18 | Add #[inline(always)] to each operator method | Brendan Zabarauskas | -0/+50 |
| 2013-04-18 | Implement bitwise operator traits for ints and uints | Brendan Zabarauskas | -0/+69 |
| 2013-04-16 | libcore,std,syntax,rustc: move tests into `mod tests`, make them private (no ... | Huon Wilson | -506/+522 |
| 2013-04-14 | core: remove unnecessary unsafe blocks/functions | Alex Crichton | -6/+6 |