| Age | Commit message (Expand) | Author | Lines |
| 2013-05-14 | Fix cosmetics for fail!() calls | Marvin Löbel | -9/+7 |
| 2013-05-14 | Use static string with fail!() and remove fail!(fmt!()) | Björn Steinbrink | -27/+27 |
| 2013-05-14 | auto merge of #6463 : bjz/rust/numeric-traits, r=thestinger | bors | -1/+445 |
| 2013-05-14 | Remove unnecessary infinity check | Brendan Zabarauskas | -4/+2 |
| 2013-05-14 | Add ldexp and frexp functions | Brendan Zabarauskas | -1/+184 |
| 2013-05-13 | Remove re-exports from libcore/core.rc | Alex Crichton | -0/+3 |
| 2013-05-14 | Add inverse hyperbolic functions | Brendan Zabarauskas | -0/+263 |
| 2013-05-12 | libsyntax: Tighten up expressions in patterns to only allow identifiers or li... | Patrick Walton | -5/+5 |
| 2013-05-13 | Make Float::classify matching more clear for f64 and f32 | Brendan Zabarauskas | -20/+14 |
| 2013-05-10 | core: Use the new `for` protocol | Alex Crichton | -13/+88 |
| 2013-05-08 | Remove #[cfg(notest)] and use #[cfg(not(test))] to cooincide with #[cfg(debug)] | Zack Corr | -55/+55 |
| 2013-05-07 | Add is_normal and classify methods to Float trait | Brendan Zabarauskas | -17/+170 |
| 2013-05-07 | Add abs_sub method to Signed trait | Brendan Zabarauskas | -5/+126 |
| 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 |