| Age | Commit message (Expand) | Author | Lines |
| 2012-07-31 | rustc: Implement unary move. Closes #917. | Patrick Walton | -10/+10 |
| 2012-07-31 | test: Move two tests from run-pass into the libs | Brian Anderson | -0/+27 |
| 2012-07-31 | Introduce 'return', 'match' and 'module' as synonyms | Brian Anderson | -6/+6 |
| 2012-07-31 | Add hash tests: idempotent, no_bytes_dropped. | Ben Blum | -0/+42 |
| 2012-07-31 | Add hash uint tests | Ben Blum | -0/+19 |
| 2012-07-31 | Add hash_u64, hash_u32, hash_uint. | Ben Blum | -0/+38 |
| 2012-07-31 | send_map: each -> each_ref, and add each* copying versions; add 'iterate' test | Ben Blum | -5/+35 |
| 2012-07-31 | Add send_map::each{,_key,_value} | Ben Blum | -4/+22 |
| 2012-07-31 | Change remaining "iface" occurrences to "trait"; deprecate "iface" | Lindsey Kuper | -20/+20 |
| 2012-07-31 | make option::map_default<T,U> instead of U:copy | Ben Blum | -2/+2 |
| 2012-07-30 | Change syntax extension syntax: `#m[...]` -> `m!{...}`. | Paul Stansifer | -85/+85 |
| 2012-07-30 | Make at_vec push functions more like the current vec ones. | Michael Sullivan | -6/+14 |
| 2012-07-30 | Move send_map to libcore | Ben Blum | -0/+347 |
| 2012-07-30 | core::hash -- add a hash::streaming interface and associated siphash implemen... | Damian Gryski | -11/+194 |
| 2012-07-29 | Make uint::iterate pure | Tim Chevalier | -1/+1 |
| 2012-07-28 | core: More magic to make core build with --test | Brian Anderson | -4/+17 |
| 2012-07-28 | core: Correct exports of intrinsic ops | Brian Anderson | -3/+5 |
| 2012-07-28 | core: Fix compilation of intrinsic ops when testing | Brian Anderson | -3/+13 |
| 2012-07-28 | Fix too-large constants in linked failure tests for happier valgrinding | Ben Blum | -7/+7 |
| 2012-07-27 | rustc: Use coherence for operator overloading. | Patrick Walton | -10/+43 |
| 2012-07-27 | core: Make #fmt pure | Brian Anderson | -18/+18 |
| 2012-07-27 | core: Trait-ify various overloaded operators | Patrick Walton | -1/+28 |
| 2012-07-26 | Undo dlist's destructor-involving type structure in light of #3039 | Ben Blum | -26/+9 |
| 2012-07-26 | (comments only) Mention unsafe TLS destructor use (#3039) | Ben Blum | -2/+7 |
| 2012-07-26 | Added .peek for recv_packets | Eric Holk | -0/+6 |
| 2012-07-26 | Nomenclature fixes in the lint checker. Fewer double-negatives. | Graydon Hoare | -0/+5 |
| 2012-07-26 | Remove superfluous rets (purely style) | Tim Chevalier | -5/+3 |
| 2012-07-26 | core::io::writer : add get_type() method | Damian Gryski | -0/+16 |
| 2012-07-26 | Merge branch 'incoming' of github.com:mozilla/rust | Paul Stansifer | -1/+1 |
| 2012-07-26 | Add issue number #3039 to dlist destructor | Ben Blum | -1/+1 |
| 2012-07-26 | Merge branch 'incoming' of github.com:mozilla/rust | Paul Stansifer | -233/+271 |
| 2012-07-26 | dlist pop needs copy after all (#3024) | Ben Blum | -15/+12 |
| 2012-07-26 | dlist: cleanup a little; pretend to implement "cycle-collecting" destructor | Ben Blum | -24/+50 |
| 2012-07-26 | core: Mark a bunch of numeric functions as pure | Patrick Walton | -77/+77 |
| 2012-07-26 | Add #[inline(never)], and also fixed inlining on vec::push | Eric Holk | -6/+19 |
| 2012-07-26 | Change `#macro` to `macro_rules!` in some cases. | Paul Stansifer | -6/+3 |
| 2012-07-25 | libcore: Add missing ops.rs | Patrick Walton | -0/+66 |
| 2012-07-25 | rustc: Introduce a lang_items pass, part of coherence and operator overloading. | Patrick Walton | -0/+6 |
| 2012-07-25 | Add #[inline(never)], and also fixed inlining on vec::push | Eric Holk | -6/+19 |
| 2012-07-25 | Reject non-UTF-8 files when reading as str. Close #2918. | Graydon Hoare | -1/+5 |
| 2012-07-25 | Added a select2 trait. Fixes #2898 | Eric Holk | -0/+49 |
| 2012-07-25 | Remove shared_arc (unused) and fix trivial-message | Eric Holk | -64/+1 |
| 2012-07-25 | Rewrite task-comm-NN to use pipes | Eric Holk | -53/+6 |
| 2012-07-25 | Fix os::env race (#2870) | Ben Blum | -12/+30 |
| 2012-07-25 | Thread spans through the pipe compiler. They aren't perfect, but they make de... | Eric Holk | -1/+1 |
| 2012-07-25 | More purity to make it easier to borrow strings in format strings. | Eric Holk | -8/+8 |
| 2012-07-25 | Added infrastructure to spin for a bit on recv. A spin count > 0 makes bench/... | Eric Holk | -3/+17 |
| 2012-07-25 | Added a benchmark of bounded vs unbounded. Bounded is 8-12% faster. The macro... | Eric Holk | -13/+13 |
| 2012-07-25 | Compiled a bounded version of pingpong. | Eric Holk | -16/+19 |
| 2012-07-25 | Refactor the bounded pingpong example to avoid needing to generate unsafe code. | Eric Holk | -1/+21 |