| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2011-08-27 | Convert std::uint to istrs. Issue #855 | Brian Anderson | -17/+24 | |
| 2011-08-27 | Rename std::istr::from_str/to_str to from_estr/to_estr. Issue #855 | Brian Anderson | -3/+3 | |
| This will make it a bit clearer what's going on | ||||
| 2011-08-27 | Convert std::bitv to istrs. Issue #855 | Brian Anderson | -3/+5 | |
| 2011-08-26 | stdlib: Added a treemap traversal function. | Eric Holk | -0/+23 | |
| 2011-08-26 | stdlib: Added an incredibly simple treemap. | Eric Holk | -0/+77 | |
| 2011-08-25 | Remove remaining use of 'pred' and make 'pred' a non-reserved word. Huzzah\! | Tim Chevalier | -2/+2 | |
| 2011-08-25 | Change "pred" to "pure fn" in all libraries and test cases | Tim Chevalier | -11/+11 | |
| 2011-08-25 | Cleaning up task and comm exports, updating all the test cases. | Eric Holk | -100/+103 | |
| 2011-08-25 | Fix istr::unsafe_from_bytes. Issue #855 | Brian Anderson | -1/+2 | |
| 2011-08-23 | Resolve a number of FIXMEs | Brian Anderson | -13/+0 | |
| 2011-08-23 | Add kind-checking for assign-op, copy, ret, be, fail exprs. Fix caught ↵ | Graydon Hoare | -7/+3 | |
| kinding-violations in rustc and libstd. | ||||
| 2011-08-23 | Cleanup formatting in std::sha1 | Brian Anderson | -35/+15 | |
| This file has suffered a lot of reformats and was looking pretty ragged | ||||
| 2011-08-22 | Add ivec::from_str and to_str methods. Issue #855 | Brian Anderson | -0/+18 | |
| 2011-08-22 | Add std::istr. Issue #855 | Brian Anderson | -0/+429 | |
| 2011-08-22 | Promote std::task::rustrt::leak to std::unsafe::leak | Brian Anderson | -3/+8 | |
| I want to use this for std::istr | ||||
| 2011-08-20 | Reformat | Brian Anderson | -754/+640 | |
| This changes the indexing syntax from .() to [], the vector syntax from ~[] to [] and the extension syntax from #fmt() to #fmt[] | ||||
| 2011-08-19 | Add an iter2 iterator to vec. | Michael Sullivan | -0/+8 | |
| 2011-08-18 | Rename various things from ivec to vec | Brian Anderson | -4/+2 | |
| 2011-08-18 | Remove or _-prefix all unused function arguments | Marijn Haverbeke | -8/+8 | |
| This should make the compilation process a bit less noisy. | ||||
| 2011-08-17 | Better type inference for chans and ports. | Eric Holk | -28/+24 | |
| 2011-08-17 | Remove last mentions of vec<> type in Rust source | Brian Anderson | -8/+0 | |
| 2011-08-17 | Use the new task join methods in the test runner. Closes #826 | Brian Anderson | -5/+8 | |
| It should report failures properly again | ||||
| 2011-08-17 | Remove more hacks from the test runner | Brian Anderson | -9/+2 | |
| 2011-08-17 | Simplify default_test_to_task | Brian Anderson | -8/+4 | |
| Doesn't appear to require an unsafe pointer now | ||||
| 2011-08-17 | Convenience methods for spawning and joining tasks. | Eric Holk | -2/+17 | |
| 2011-08-17 | Making more of the rust_task structure directly accessible from Rust. | Eric Holk | -18/+30 | |
| 2011-08-17 | Yet another comm interface. | Eric Holk | -14/+28 | |
| 2011-08-17 | Restore test task setup | Brian Anderson | -4/+1 | |
| This is needed in order for the test runner to continue on failure, and I don't see that it causes any problems. | ||||
| 2011-08-17 | Using move-mode for spawn thunks to avoid race conditions. | Eric Holk | -5/+9 | |
| 2011-08-17 | Remove transitional interfaces from std::extfmt | Brian Anderson | -18/+1 | |
| 2011-08-17 | Purge vecs from the std::test interface | Brian Anderson | -5/+1 | |
| 2011-08-16 | Updating to new type parameter syntax. | Eric Holk | -3/+3 | |
| 2011-08-16 | New channel-based task status notifications. | Eric Holk | -9/+43 | |
| 2011-08-16 | Port the stdlib to the expr foo::<T> syntax. | Erick Tryzelaar | -141/+147 | |
| 2011-08-16 | Port the stdlib to the decl foo<T> syntax. | Erick Tryzelaar | -144/+144 | |
| 2011-08-16 | Port the stdlib to the typaram foo<T> syntax. | Erick Tryzelaar | -144/+144 | |
| 2011-08-16 | Rename std::ivec to std::vec | Brian Anderson | -100/+100 | |
| 2011-08-16 | Replace std::ufind with std::ufindivec. Remove std::ufindivec | Brian Anderson | -60/+7 | |
| 2011-08-16 | Rename bitv::to_ivec to to_vec | Brian Anderson | -5/+5 | |
| 2011-08-16 | Continue migrating the std #fmt interface to ivecs | Brian Anderson | -28/+20 | |
| Only thing left is to remove some duplicate interfaces in std::extfmt::rt after the next snapshot | ||||
| 2011-08-16 | Add and use an ivec interface to std::test | Brian Anderson | -5/+8 | |
| 2011-08-16 | Updating sio tests. | Eric Holk | -1/+0 | |
| 2011-08-16 | Removed trans_comm.rs from the compiler. Updating aio/sio to work with the ↵ | Eric Holk | -123/+160 | |
| 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 | -18/+13 | |
| 2011-08-15 | The wonky for...in... whitespace was bothering me. Sorry! | Lindsey Kuper | -45/+45 | |
| 2011-08-15 | Add operator 'copy', translates as fall-through. | Graydon Hoare | -2/+5 | |
| 2011-08-15 | Properly ref counting to fix valgrind issues on linux. | Eric Holk | -0/+6 | |
| 2011-08-15 | Removed spawn and task from the parser. Updated all the tests except for the ↵ | Eric Holk | -15/+20 | |
| benchmarks. | ||||
| 2011-08-15 | Removed old object-based chans. | Eric Holk | -29/+3 | |
| 2011-08-15 | Fixed memory accounting and task stack creation bugs. | Eric Holk | -0/+3 | |
