| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2011-09-02 | Remove estrs and evecs from runtime. Issue #855 | Brian Anderson | -0/+7 | |
| 2011-09-01 | Convert all uses of #ifmt to #fmt. Issue #855 | Brian Anderson | -1/+1 | |
| 2011-09-01 | Rename std::istr to std::str. Issue #855 | Brian Anderson | -131/+131 | |
| 2011-09-01 | Convert rust_list_files to istrs. Issue #855 | Brian Anderson | -0/+11 | |
| 2011-09-01 | Check error code in rust_file_is_dir. Prevent comparison of uninitialized mem | Brian Anderson | -0/+5 | |
| 2011-09-01 | Consolidate std::str tests into stdtest::str | Brian Anderson | -41/+28 | |
| 2011-09-01 | Convert std::test to istrs. Issue #855 | Brian Anderson | -21/+23 | |
| 2011-08-31 | Start paring down std::str. Issue #855 | Brian Anderson | -500/+283 | |
| 2011-08-31 | Convert uses of #fmt to #ifmt. Issue #855 | Brian Anderson | -1/+1 | |
| 2011-08-30 | Convert std::net to istrs. Issue #855 | Brian Anderson | -2/+4 | |
| 2011-08-30 | Add a precondition on vec::zip | Tim Chevalier | -1/+8 | |
| vec::zip now has the precondition that the two argument vectors are the same length. Changed uses of it to reflect that. Also added a few vector-enumerating utilities to vec.rs, which necessitated in making some functions in u8 declared-pure. | ||||
| 2011-08-29 | Implement non-internal ivecs | Marijn Haverbeke | -12/+2 | |
| Vectors are now similar to our old, pre-internal vectors, except that they are uniquely owned, not refcounted. Their name should probably change too, then. I've renamed them to vec in the runtime, will do so throughout the compiler later. | ||||
| 2011-08-27 | Add std::istr::as_buf for converting to cstrs. Issue #855 | Brian Anderson | -1/+21 | |
| 2011-08-27 | Convert std::os to istrs. Issue #855 | Brian Anderson | -1/+1 | |
| 2011-08-27 | Convert std::generic_os to istrs. Issue #855 | Brian Anderson | -9/+9 | |
| 2011-08-27 | Add std::istr::str_from_cstr. Issue #855 | Brian Anderson | -0/+9 | |
| 2011-08-27 | Convert std::io to istrs. Issue #855 | Brian Anderson | -11/+11 | |
| 2011-08-27 | Convert std::run to istrs. Issue #855 | Brian Anderson | -4/+5 | |
| 2011-08-27 | Convert std::getopts to istrs. Issue #855 | Brian Anderson | -111/+112 | |
| 2011-08-27 | Convert std::fs to istrs. Issue #855 | Brian Anderson | -7/+7 | |
| 2011-08-27 | Convert std::sha1 to istrs. Issue #855 | Brian Anderson | -12/+12 | |
| 2011-08-27 | Convert std::int to istrs. Issue #855 | Brian Anderson | -6/+6 | |
| 2011-08-27 | Convert std::uint to istrs. Issue #855 | Brian Anderson | -24/+27 | |
| 2011-08-26 | stdlib: more test cases for treemap. | Eric Holk | -1/+16 | |
| 2011-08-26 | stdlib: Added a treemap traversal function. | Eric Holk | -0/+17 | |
| 2011-08-26 | stdlib: Added an incredibly simple treemap. | Eric Holk | -0/+43 | |
| 2011-08-26 | Adding a test case to make sure spawning polymorphic functions works. | Eric Holk | -0/+12 | |
| 2011-08-25 | Change "pred" to "pure fn" in all libraries and test cases | Tim Chevalier | -1/+1 | |
| 2011-08-25 | Cleaning up task and comm exports, updating all the test cases. | Eric Holk | -38/+11 | |
| 2011-08-25 | Fix istr::unsafe_from_bytes. Issue #855 | Brian Anderson | -0/+7 | |
| 2011-08-23 | Resolve a number of FIXMEs | Brian Anderson | -29/+6 | |
| 2011-08-22 | Eliminate unused variable warnings in stdtest | Brian Anderson | -6/+7 | |
| 2011-08-22 | Add std::istr. Issue #855 | Brian Anderson | -0/+252 | |
| 2011-08-20 | Reformat | Brian Anderson | -457/+439 | |
| This changes the indexing syntax from .() to [], the vector syntax from ~[] to [] and the extension syntax from #fmt() to #fmt[] | ||||
| 2011-08-18 | Rename various things from ivec to vec | Brian Anderson | -26/+26 | |
| 2011-08-17 | Better type inference for chans and ports. | Eric Holk | -0/+16 | |
| 2011-08-17 | Convenience methods for spawning and joining tasks. | Eric Holk | -0/+8 | |
| 2011-08-17 | Yet another comm interface. | Eric Holk | -0/+8 | |
| 2011-08-17 | Using move-mode for spawn thunks to avoid race conditions. | Eric Holk | -4/+8 | |
| 2011-08-16 | Updating to new type parameter syntax. | Eric Holk | -2/+2 | |
| 2011-08-16 | New channel-based task status notifications. | Eric Holk | -0/+32 | |
| 2011-08-16 | Port the tests to the expr foo::<T> syntax. | Erick Tryzelaar | -68/+68 | |
| 2011-08-16 | Port the tests to the decl foo<T> syntax. | Erick Tryzelaar | -4/+4 | |
| 2011-08-16 | Port the tests to the typaram foo<T> syntax. | Erick Tryzelaar | -45/+45 | |
| 2011-08-16 | Rename std::ivec to std::vec | Brian Anderson | -96/+96 | |
| 2011-08-16 | Removed trans_comm.rs from the compiler. Updating aio/sio to work with the ↵ | Eric Holk | -8/+13 | |
| new chan and port system, started on a networking module for the standard library. | ||||
| 2011-08-16 | Clean up zip and unzip in std::ivec | Marijn Haverbeke | -12/+12 | |
| 2011-08-15 | The wonky for...in... whitespace was bothering me. Sorry! | Lindsey Kuper | -6/+6 | |
| 2011-08-15 | Removed spawn and task from the parser. Updated all the tests except for the ↵ | Eric Holk | -5/+5 | |
| benchmarks. | ||||
| 2011-08-15 | Removed old object-based chans. | Eric Holk | -12/+1 | |
