| Age | Commit message (Expand) | Author | Lines |
| 2011-11-15 | Fixed typo in constant value #1165 | Stefan Plantikow | -1/+1 |
| 2011-11-15 | Replaced constant functions with actual constants in std and updated tests | Stefan Plantikow | -116/+97 |
| 2011-11-15 | Fix some indentation and idioms in rope.rs | Marijn Haverbeke | -25/+17 |
| 2011-11-14 | stdlib: Run cleanups on data that fails to send | Brian Anderson | -2/+8 |
| 2011-11-13 | rt: Perform task notification before killing the parent task | Brian Anderson | -1/+1 |
| 2011-11-13 | Drop enqueued elements when a port is destructed. Closes #1155 | Brian Anderson | -2/+9 |
| 2011-11-11 | rt: Remove drop_port. Unused | Brian Anderson | -2/+0 |
| 2011-11-10 | str: add escape() | Elly Jones | -2/+32 |
| 2011-11-10 | Cleanup unused imports | Haitao Li | -7/+0 |
| 2011-11-10 | stdlib: Remove sio and aio. Bitrotted. | Brian Anderson | -268/+1 |
| 2011-11-10 | stdlib: Update the example in std::comm | Brian Anderson | -3/+2 |
| 2011-11-10 | Add float support to #fmt. Fix #1014. | Josh Matthews | -4/+55 |
| 2011-11-09 | Rename "c-stack-stdcall" ABI to "stdcall" | Brian Anderson | -1/+1 |
| 2011-11-09 | Rename "c-stack-cdecl" ABI to "cdecl" | Brian Anderson | -24/+24 |
| 2011-11-09 | Convert last use of "x86stdcall" ABI to "c-stack-stdcall" | Brian Anderson | -1/+1 |
| 2011-11-08 | Clean up std::task | Brian Anderson | -12/+12 |
| 2011-11-08 | Make task_sleep an intrinsic. | Brian Anderson | -1/+1 |
| 2011-11-08 | rt: Remove task_yield builtin | Brian Anderson | -2/+1 |
| 2011-11-08 | start_task can run on the C stack | Brian Anderson | -2/+4 |
| 2011-11-08 | Remove all uses of native cdecl except for those that yield | Brian Anderson | -4/+28 |
| 2011-11-07 | Fix long lines | Brian Anderson | -1/+2 |
| 2011-11-07 | json: betterify for brson | Elly Jones | -87/+51 |
| 2011-11-07 | stdlib: add json. | Elly Jones | -0/+294 |
| 2011-11-07 | Remove native "llvm" ABI | Brian Anderson | -15/+15 |
| 2011-11-06 | [Stdlib] rope.rs: improved doc, code readability | David Rajchenbach-Teller | -82/+157 |
| 2011-11-06 | [Stdlib] rope.rs: concat, now attempts to preserve balance | David Rajchenbach-Teller | -6/+28 |
| 2011-11-06 | [Stdlib doc] char.rs: documented to_digit, cmp | David Rajchenbach-Teller | -0/+25 |
| 2011-11-06 | [stdlib optim] rope::node improved balancing strategy | David Rajchenbach-Teller | -8/+59 |
| 2011-11-05 | [Docfix] lib/str.rs: Applied review suggestions, took the opportunity to impr... | David Rajchenbach-Teller | -7/+62 |
| 2011-11-05 | [Docfixes + feature] lib/uint.rs: Applied review suggesions, took the opportu... | David Rajchenbach-Teller | -9/+61 |
| 2011-11-05 | [Docfix + Renaming] lib/rope.rs: Applied review suggestions, mostly docfixes. | David Rajchenbach-Teller | -2/+68 |
| 2011-11-05 | stdlib: Added a small rope library | David Rajchenbach-Teller | -0/+1133 |
| 2011-11-05 | char.rs: Added a function cmp | David Rajchenbach-Teller | -0/+8 |
| 2011-11-05 | uint.rs: added functions div_ceil, div_floor, div_round | David Rajchenbach-Teller | -0/+23 |
| 2011-11-05 | str.rs: Added functions loop_chars, loop_chars_sub, char_len_range, byte_len_... | David Rajchenbach-Teller | -8/+63 |
| 2011-11-04 | vec: take [mutable? T] instead of [T] | Elly Jones | -2/+2 |
| 2011-11-03 | Disallow writing to function arguments again | Marijn Haverbeke | -22/+28 |
| 2011-11-02 | Add vec::permute to the standard library (#1013) | Matt Brubeck | -0/+25 |
| 2011-11-02 | Rename car/cdr to head/tail in std::list | Marijn Haverbeke | -4/+4 |
| 2011-11-02 | Make ptr::addr_of return an immutable vec, add mut_addr_of | Marijn Haverbeke | -6/+16 |
| 2011-11-01 | Organize std.rc and make exports explicit | Brian Anderson | -51/+77 |
| 2011-11-01 | Add should_fail annotation for unit tests | Matt Brubeck | -14/+23 |
| 2011-10-31 | Add a char::to_digit function | Matt Brubeck | -10/+11 |
| 2011-10-31 | Correct handling of non-numeric chars in parse_buf | Matt Brubeck | -2/+18 |
| 2011-10-31 | Rename std::str::chars to iter_chars | Marijn Haverbeke | -3/+3 |
| 2011-10-31 | Add a way to iterate over a str's chars to std::str | Marijn Haverbeke | -1/+16 |
| 2011-10-30 | Fix int::parse_buf for negative numbers (#1102) | Matt Brubeck | -2/+4 |
| 2011-10-30 | Make float::from_str ignore whitespace (#1089) | Matt Brubeck | -3/+21 |
| 2011-10-29 | stdlib: Fix type in docs for result::chan | Brian Anderson | -1/+1 |
| 2011-10-29 | stdlib: Add vec::concat to concatenate a vector of vectors | Brian Anderson | -0/+13 |