| Age | Commit message (Expand) | Author | Lines |
| 2014-06-13 | Add Bitwise::{swap_bytes, rotate_left, rotate_right} methods | Brendan Zabarauskas | -20/+152 |
| 2014-06-02 | docs: Stop using `notrust` | Florian Gilcher | -2/+2 |
| 2014-05-31 | rustdoc: Create anchor pages for primitive types | Alex Crichton | -0/+24 |
| 2014-05-30 | std: Rename {Eq,Ord} to Partial{Eq,Ord} | Alex Crichton | -5/+5 |
| 2014-05-28 | Move trait impls for primitives near trait definition | Piotr Jawniak | -1222/+363 |
| 2014-05-19 | Minor doc fixes in various places | Piotr Jawniak | -17/+21 |
| 2014-05-15 | core: Move intrinsic float functionality from std | Alex Crichton | -2/+699 |
| 2014-05-07 | core: Fix an unsigned negation warning | Alex Crichton | -1/+1 |
| 2014-05-07 | core: Get coretest working | Alex Crichton | -31/+95 |
| 2014-05-07 | core: Add a limited implementation of failure | Alex Crichton | -42/+42 |
| 2014-05-07 | core: Inherit the specific numeric modules | Alex Crichton | -0/+1729 |
| 2014-05-07 | core: Inherit what's possible from the num module | Alex Crichton | -0/+860 |
| 2013-05-22 | libstd: Rename libcore to libstd and libstd to libextra; update makefiles. | Patrick Walton | -7635/+0 |
| 2013-05-19 | Register snapshots | Brian Anderson | -100/+0 |
| 2013-05-19 | Use assert_eq! rather than assert! where possible | Corey Richardson | -54/+54 |
| 2013-05-18 | auto merge of #6586 : bjz/rust/formatting-and-conditionals, r=thestinger | bors | -4/+52 |
| 2013-05-18 | Use cond! macro where appropriate | Brendan Zabarauskas | -4/+52 |
| 2013-05-18 | Some cosmetic changes to num.rs | Marvin Löbel | -5/+4 |
| 2013-05-17 | Implement sin_cos method for float, f64 and f32 | Brendan Zabarauskas | -0/+21 |
| 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 |