| Age | Commit message (Expand) | Author | Lines |
| 2011-08-27 | Convert std::map::new_str_hash to istrs. Issue #855 | Brian Anderson | -2/+2 |
| 2011-08-20 | Reformat | Brian Anderson | -36/+37 |
| 2011-08-18 | Remove or _-prefix all unused function arguments | Marijn Haverbeke | -3/+3 |
| 2011-08-16 | Port the stdlib to the expr foo::<T> syntax. | Erick Tryzelaar | -1/+1 |
| 2011-08-16 | Port the stdlib to the decl foo<T> syntax. | Erick Tryzelaar | -15/+15 |
| 2011-08-16 | Port the stdlib to the typaram foo<T> syntax. | Erick Tryzelaar | -26/+26 |
| 2011-08-16 | Rename std::ivec to std::vec | Brian Anderson | -1/+1 |
| 2011-08-15 | The wonky for...in... whitespace was bothering me. Sorry! | Lindsey Kuper | -3/+3 |
| 2011-08-09 | Do some cleanup in stdlib. | Michael Sullivan | -43/+37 |
| 2011-08-09 | Port the stdlib to the ivec type [T] syntax. | Erick Tryzelaar | -6/+6 |
| 2011-07-29 | Enable kind checking on typarams, fix kind constraints in library and comp. | Graydon Hoare | -2/+2 |
| 2011-07-29 | Turn on kind propagation for typarams. Annotate a bunch of typarams in rustc ... | Graydon Hoare | -23/+23 |
| 2011-07-27 | Reformat for new syntax | Marijn Haverbeke | -111/+102 |
| 2011-07-26 | Remove all uses of tuples from the compiler and stdlib | Marijn Haverbeke | -3/+3 |
| 2011-07-25 | Remove some rustboot-isms | Marijn Haverbeke | -9/+3 |
| 2011-07-21 | Add some support for using a map like a set. | Michael Sullivan | -2/+15 |
| 2011-07-08 | rustc: Move maps over to interior vectors | Patrick Walton | -11/+10 |
| 2011-07-05 | Move everything syntax-related to syntax/, break deps on rest of compiler | Marijn Haverbeke | -3/+25 |
| 2011-06-15 | Reformat source tree (minus a couple tests that are still grumpy). | Graydon Hoare | -182/+139 |
| 2011-06-09 | Properly handle lifetime of aliases in nested blocks | Marijn Haverbeke | -1/+2 |
| 2011-06-09 | Some more workarounds to please the alias checker | Marijn Haverbeke | -6/+12 |
| 2011-05-31 | stdlib: Remove unneeded type params from alt patterns | Brian Anderson | -10/+10 |
| 2011-05-22 | stdlib: Do tail calls in std::map. Remove FIXMEs | Brian Anderson | -3/+1 |
| 2011-05-22 | stdlib: Use if/alt expressions in std::map | Brian Anderson | -10/+8 |
| 2011-05-17 | Finally rename std::_xxx to std::xxx | Marijn Haverbeke | -2/+2 |
| 2011-05-12 | Downcase std modules again, move to :: for module dereferencing | Marijn Haverbeke | -0/+246 |
| 2011-05-06 | Rename std modules to be camelcased | Marijn Haverbeke | -246/+0 |
| 2011-04-25 | Skip likely-zero initial probe, speed up map.rs. | Graydon Hoare | -5/+5 |
| 2011-04-22 | Minimize calls to hash function in map.rs | Graydon Hoare | -11/+12 |
| 2011-04-19 | Remove half-baked 'opacity' layer qualifier. | Graydon Hoare | -2/+2 |
| 2011-04-19 | Remove effect system from src. | Graydon Hoare | -2/+2 |
| 2011-03-22 | Revert "Remove usages of case(_) { fail; } since the compiler does this autom... | Patrick Walton | -0/+1 |
| 2011-03-22 | Remove usages of case(_) { fail; } since the compiler does this automatically | Brian Anderson | -1/+0 |
| 2011-03-18 | rustc: Box the tuples returned by hashmap.items() for now since we don't have... | Patrick Walton | -3/+3 |
| 2011-03-18 | Add "mutable?" to _vec in the standard library; fix callers | Patrick Walton | -1/+1 |
| 2011-03-09 | Remove redundant imports in lib (rustc doesn't like 'std' as a synonym for ro... | Graydon Hoare | -6/+0 |
| 2010-11-18 | rustboot: Don't use walk to traverse statements in type.ml; fixes redundant c... | Patrick Walton | -0/+2 |
| 2010-11-05 | Move the option type to its own module | Patrick Walton | -14/+14 |
| 2010-11-02 | Split out stratum-checking pass, implement more-strict (overly aggressive) im... | Graydon Hoare | -10/+10 |
| 2010-11-02 | First pass on splitting stratum and opacity off of effects. WIP. | Graydon Hoare | -1/+1 |
| 2010-10-18 | Disable use of parametric tail call in map.rs, they don't presently work. | Graydon Hoare | -1/+3 |
| 2010-09-29 | Patchwork of attempted fixes to effect system and gc system; eventually give ... | Graydon Hoare | -15/+15 |
| 2010-09-22 | Add 'items' iter to hashmap. | Graydon Hoare | -0/+12 |
| 2010-09-22 | Reformat standard library; no code changes. | Graydon Hoare | -183/+200 |
| 2010-09-21 | Tighten pattern parsing on 0-ary constructors. | Graydon Hoare | -2/+2 |
| 2010-09-20 | Bind pattern slots with ?, drop parens from 0-ary tag constructors, translate... | Graydon Hoare | -15/+15 |
| 2010-09-09 | Switch tags to purely nominal, removing TY_iso and TY_idx. Seems to mostly wo... | Graydon Hoare | -1/+5 |
| 2010-08-26 | Test the hashmap more, exercising hash collision, element removal, and a forc... | Roy Frostig | -6/+11 |
| 2010-08-25 | Actually switch to using the bigger hashmap once a it finishes growing and re... | Roy Frostig | -2/+4 |
| 2010-08-24 | Fix mod-bug in std.map, work around bug in closure typaram capture, enable in... | Graydon Hoare | -5/+4 |