| Age | Commit message (Expand) | Author | Lines |
| 2013-04-30 | remove some unused mut decls | Niko Matsakis | -1/+1 |
| 2013-04-30 | iter: add max and min functions | Daniel Micay | -2/+66 |
| 2013-04-30 | allover: numerous unused muts etc | Niko Matsakis | -33/+25 |
| 2013-04-30 | iter: add a find function | Daniel Micay | -0/+29 |
| 2013-04-30 | char: fix unused import warning | Daniel Micay | -0/+1 |
| 2013-04-30 | new borrow checker (mass squash) | Niko Matsakis | -41/+87 |
| 2013-04-30 | desnapshot | Niko Matsakis | -122/+8 |
| 2013-04-30 | adapt to snapshot | Niko Matsakis | -864/+2 |
| 2013-04-30 | I modified the doc of from_elem, from_fn, I think it returns an owned vector | Sangeun Kim | -4/+4 |
| 2013-04-29 | auto merge of #6107 : catamorphism/rust/mkdir_recursive, r=brson | bors | -16/+60 |
| 2013-04-29 | auto merge of #6073 : huonw/rust/core-rust-isaac, r=pcwalton | bors | -47/+234 |
| 2013-04-29 | core: Turn off the local heap in newsched in stage0 to work around windows bu... | Brian Anderson | -0/+19 |
| 2013-04-30 | core: add some inlining hints to methods/fns in rand. | Huon Wilson | -1/+32 |
| 2013-04-30 | core: a pure Rust implementation of the ISAAC RNG. | Huon Wilson | -46/+202 |
| 2013-04-29 | test: Fix more tests. | Patrick Walton | -5/+5 |
| 2013-04-29 | librustc: Forbid type implementations on typedefs. | Patrick Walton | -31/+65 |
| 2013-04-29 | test: Fix tests. | Patrick Walton | -16/+18 |
| 2013-04-29 | librustc: Make `&fn` by-copy by default and remove the mode from `frame_addre... | Patrick Walton | -0/+3 |
| 2013-04-29 | test: Remove #[legacy_modes] from the test suite. | Patrick Walton | -1/+1 |
| 2013-04-29 | librustc: Rename `reinterpret_cast` to `transmute_copy` and remove the intrinsic | Patrick Walton | -26/+39 |
| 2013-04-29 | librustc: Implement `reinterpret_cast` in terms of `transmute`. | Patrick Walton | -0/+36 |
| 2013-04-29 | librustc: Remove `ptr::addr_of`. | Patrick Walton | -89/+70 |
| 2013-04-29 | Revert "libcore: remove unnecessary deref" | Tim Chevalier | -1/+1 |
| 2013-04-29 | auto merge of #6110 : bjz/rust/numeric-traits, r=pcwalton | bors | -256/+360 |
| 2013-04-29 | core: Replace uses of 'drop' in task module with 'finally'. #5379 | Brian Anderson | -56/+21 |
| 2013-04-29 | Revert "Merge Exponential and Hyperbolic traits" | Brendan Zabarauskas | -5/+11 |
| 2013-04-29 | Merge Exponential and Hyperbolic traits | Brendan Zabarauskas | -11/+5 |
| 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 | -251/+293 |
| 2013-04-28 | core: Use a better termination condition in os::mkdir_recursive | Tim Chevalier | -16/+20 |
| 2013-04-28 | core: Document core::path::GenericPath's trait methods | Tim Chevalier | -0/+40 |
| 2013-04-28 | make way for a new iter module | Daniel Micay | -429/+534 |
| 2013-04-28 | rand: Fix infinite recursion | Philipp Brüschweiler | -1/+1 |
| 2013-04-27 | auto merge of #6082 : catamorphism/rust/mkdir_recursive, r=brson | bors | -0/+35 |
| 2013-04-27 | auto merge of #6071 : bjz/rust/numeric-traits, r=graydon | bors | -762/+1624 |
| 2013-04-27 | auto merge of #6064 : thestinger/rust/char, r=catamorphism | bors | -14/+19 |
| 2013-04-26 | auto merge of #6059 : Kimundi/rust/nice-fail, r=pcwalton | bors | -1/+46 |
| 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-26 | auto merge of #6057 : cmr/rust/map_zip, r=graydon | bors | -9/+12 |
| 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-26 | core: Move mkdir_recursive from rustpkg into core::os | Tim Chevalier | -0/+35 |
| 2013-04-27 | Add mul_add and next_after methods to Float | Brendan Zabarauskas | -2/+55 |
| 2013-04-27 | Add Orderable trait | Brendan Zabarauskas | -4/+155 |
| 2013-04-26 | Combine PrimitiveInt, Int, and Uint traits into one single trait | Brendan Zabarauskas | -26/+8 |
| 2013-04-26 | Add BitCount trait | Brendan Zabarauskas | -16/+287 |
| 2013-04-26 | Add Int, Uint and Float traits for primitive numbers | Brendan Zabarauskas | -48/+122 |
| 2013-04-26 | Add Bitwise, Bounded, Primitive, and PrimitiveInt traits | Brendan Zabarauskas | -0/+258 |