| Age | Commit message (Expand) | Author | Lines |
| 2011-01-10 | Add std.path module for pathname manipulations. | Graydon Hoare | -0/+22 |
| 2011-01-10 | Fail in new_stdio_reader when libc.fopen fails. | Graydon Hoare | -2/+3 |
| 2011-01-03 | Add _str.starts_with and ends_with. | Graydon Hoare | -0/+29 |
| 2010-12-31 | Add std.dbg.trap(str msg) for help debugging. | Graydon Hoare | -0/+5 |
| 2010-12-21 | Sort methods in object types. | Graydon Hoare | -0/+25 |
| 2010-12-21 | Add std.sort, with a simple mergesort. | Graydon Hoare | -0/+50 |
| 2010-11-18 | rustboot: Don't use walk to traverse statements in type.ml; fixes redundant c... | Patrick Walton | -0/+10 |
| 2010-11-09 | Teach rustc about const tag value, begin work on trans_copy_ty, make uint's t... | Graydon Hoare | -19/+9 |
| 2010-11-09 | Implement a map2() function in std._vec | Patrick Walton | -0/+18 |
| 2010-11-09 | Support a special const-value refcount, use it for const strings. | Graydon Hoare | -4/+17 |
| 2010-11-08 | Add a check for binding an alias. Good thing, as we had two instances in our ... | Graydon Hoare | -2/+2 |
| 2010-11-05 | Move the option type to its own module | Patrick Walton | -47/+70 |
| 2010-11-05 | Revert "Move the option type to its own module" | Patrick Walton | -54/+31 |
| 2010-11-05 | Move the option type to its own module | Patrick Walton | -31/+54 |
| 2010-11-02 | Shift obj, type, param decls to have strata rather than effects. | Graydon Hoare | -15/+15 |
| 2010-11-02 | Split out stratum-checking pass, implement more-strict (overly aggressive) im... | Graydon Hoare | -19/+19 |
| 2010-11-02 | First pass on splitting stratum and opacity off of effects. WIP. | Graydon Hoare | -3/+3 |
| 2010-10-28 | rustboot: Emit an error instead of asserting in trans when a T is passed by v... | Patrick Walton | -1/+1 |
| 2010-10-28 | Revert "rustboot: Emit an error instead of asserting in trans when a T is pas... | Patrick Walton | -1/+1 |
| 2010-10-28 | rustboot: Emit an error instead of asserting in trans when a T is passed by v... | Patrick Walton | -1/+1 |
| 2010-10-22 | rustc: Add an "_" prefix to assembler-generated symbols on Mac | Patrick Walton | -0/+11 |
| 2010-10-22 | Add some filename helpers to os. | Graydon Hoare | -0/+25 |
| 2010-10-22 | Change vec slice to use uint, add push/pop/shift/unshift. | Graydon Hoare | -6/+29 |
| 2010-10-21 | eliminated bitv.test, which now lives in test/run-pass | Dave Herman | -283/+0 |
| 2010-10-21 | line length police; moved comp.util.bits to std.bitv | Dave Herman | -0/+464 |
| 2010-10-18 | Disable use of parametric tail call in map.rs, they don't presently work. | Graydon Hoare | -1/+3 |
| 2010-10-18 | Make list.find return an option of different type than the list element. | Graydon Hoare | -7/+7 |
| 2010-10-18 | Flesh out the std.list module a touch. | Graydon Hoare | -0/+49 |
| 2010-10-15 | Encode and decode tag types in dwarf properly. Add list module to std. Shift ... | Graydon Hoare | -1/+17 |
| 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 | -708/+852 |
| 2010-09-22 | Add some basic string functions: index, rindes, find, substr, split, concat, ... | Graydon Hoare | -0/+119 |
| 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 | -24/+24 |
| 2010-09-09 | Switch tags to purely nominal, removing TY_iso and TY_idx. Seems to mostly wo... | Graydon Hoare | -3/+11 |
| 2010-09-06 | Add a little pointer-cast helper to dbg. | Roy Frostig | -0/+5 |
| 2010-09-03 | Test multi-ref'ed vec growth more seriously than before. | Roy Frostig | -0/+5 |
| 2010-08-26 | Test the hashmap more, exercising hash collision, element removal, and a forc... | Roy Frostig | -6/+11 |
| 2010-08-26 | Make vreg constrs per-quad, regfence on nontrivial constrs, back out workarou... | Graydon Hoare | -3/+1 |
| 2010-08-26 | Workaround issue #152 in _uint.next_power_of_two | Roy Frostig | -1/+3 |
| 2010-08-25 | Actually switch to using the bigger hashmap once a it finishes growing and re... | Roy Frostig | -2/+4 |
| 2010-08-25 | Fix edge case in uint->string conversion. | Graydon Hoare | -1/+1 |
| 2010-08-24 | Comment on env var required for std.dbg to do any logging. | Roy Frostig | -0/+3 |
| 2010-08-24 | Add support in dbg.debug_obj for printing the obj body. | Roy Frostig | -3/+12 |
| 2010-08-24 | Add std.dbg module for inspecting rust values in memory. | Roy Frostig | -0/+45 |
| 2010-08-24 | Fix mod-bug in std.map, work around bug in closure typaram capture, enable in... | Graydon Hoare | -5/+4 |
| 2010-08-24 | Make _str.eq suitable for map.hashmap; add _str.hash that does simple djb-hash. | Graydon Hoare | -1/+12 |
| 2010-08-20 | Redo _uint.to_str to work with chars and only one tmp str, built left-to-right. | Graydon Hoare | -19/+37 |
| 2010-08-20 | Test the buffered reader and writer in _io. | Roy Frostig | -4/+35 |