| Age | Commit message (Expand) | Author | Lines |
| 2013-06-12 | std: methodise str::capacity | Huon Wilson | -12/+12 |
| 2013-06-12 | std: remove substr & str::count_*, methodise char_len, implement slice_chars. | Huon Wilson | -103/+75 |
| 2013-06-12 | std: add a test for HashMap::find_equiv. | Huon Wilson | -0/+17 |
| 2013-06-12 | std: unify the str -> [u8] functions as 3 methods: .as_bytes() and .as_bytes_... | Huon Wilson | -221/+258 |
| 2013-06-12 | std: convert str::{*shift,pop}* to methods. | Huon Wilson | -67/+93 |
| 2013-06-12 | std: convert str::repeat to a method. | Huon Wilson | -32/+34 |
| 2013-06-12 | std: replace str::append with a method | Huon Wilson | -11/+31 |
| 2013-06-12 | std: convert {vec,str}::to_owned to methods. | Huon Wilson | -99/+95 |
| 2013-06-11 | auto merge of #7056 : alexcrichton/rust/issue-4727, r=catamorphism | bors | -23/+17 |
| 2013-06-11 | auto merge of #7055 : thestinger/rust/iterator, r=catamorphism | bors | -637/+485 |
| 2013-06-11 | auto merge of #7033 : influenza/rust/rust-7022, r=graydon | bors | -2/+2 |
| 2013-06-11 | auto merge of #7040 : alexcrichton/rust/issue-6511-threadsafe-llvm, r=graydon | bors | -165/+212 |
| 2013-06-11 | Replace tabs with spaces | Ron Dahlgren | -2/+2 |
| 2013-06-11 | Ignore the test_package_request_version test for now | Alex Crichton | -1/+1 |
| 2013-06-11 | Add a finally impl for `extern "Rust" fn()` | Alex Crichton | -22/+16 |
| 2013-06-11 | fix windows build | Daniel Micay | -2/+2 |
| 2013-06-11 | option: remove redundant old_iter impls | Daniel Micay | -638/+448 |
| 2013-06-11 | add Iterator implementations for Option | Daniel Micay | -0/+38 |
| 2013-06-11 | auto merge of #7035 : influenza/rust/getopts-doc-update, r=bstrie | bors | -14/+15 |
| 2013-06-11 | Assert stk rather than checking null | Ron Dahlgren | -3/+3 |
| 2013-06-11 | auto merge of #7047 : bblum/rust/bug_triage, r=graydon | bors | -23/+18 |
| 2013-06-11 | auto merge of #7058 : Blei/rust/fix-7048, r=bstrie | bors | -55/+59 |
| 2013-06-11 | ty: several small fixes to is_instantiable | Philipp Brüschweiler | -49/+49 |
| 2013-06-11 | decoder: better error message when failing to look up an id | Philipp Brüschweiler | -5/+5 |
| 2013-06-11 | lexer: show correct span on unrecognized token start | Philipp Brüschweiler | -1/+5 |
| 2013-06-11 | auto merge of #7050 : huonw/rust/extra-complex-work, r=Aatch | bors | -34/+83 |
| 2013-06-10 | auto merge of #7054 : yichoi/rust/after_jemalloc, r=brson | bors | -0/+7 |
| 2013-06-11 | rt: dummy function pthread_atfork for android | Young-il Choi | -0/+7 |
| 2013-06-10 | auto merge of #7046 : luqmana/rust/issue-7044, r=sanxiyn | bors | -36/+44 |
| 2013-06-11 | extra: implement .norm(), and Polar conversion functions for complex numbers. | Huon Wilson | -14/+63 |
| 2013-06-11 | std: convert pow, hypot, atan2, log to take arguments by reference. | Huon Wilson | -20/+20 |
| 2013-06-10 | terminfo: Support more terminfo directory structures | Kevin Ballard | -2/+13 |
| 2013-06-10 | Tag a bunch of destructors that need mutable self with FIXME for #4330. Close... | Ben Blum | -2/+5 |
| 2013-06-10 | Add test for #7044. | Luqman Aden | -0/+14 |
| 2013-06-10 | librustc: Better errors for duplicate definitions. | Luqman Aden | -22/+16 |
| 2013-06-10 | Remove 'this could be clearer' FIXME. Looks fine. Close #2618. | Ben Blum | -1/+0 |
| 2013-06-10 | Replace str::raw::buf_as_slice with c_str_to_static_slice. Close #3843. | Ben Blum | -20/+13 |
| 2013-06-10 | librustc: Don't allow newtype or unit-like structs to shadow other names in t... | Luqman Aden | -14/+14 |
| 2013-06-10 | Have JIT execution take ownership of the LLVMContextRef | Alex Crichton | -59/+93 |
| 2013-06-10 | Remove all usage of the global LLVMContextRef | Alex Crichton | -113/+126 |
| 2013-06-11 | fix tests, remove some warnings | Huon Wilson | -38/+12 |
| 2013-06-11 | std: replace str::is_{alphanumeric,whitespace} with the methods. | Huon Wilson | -29/+11 |
| 2013-06-11 | std: replace str::{starts,ends}_with with the method. | Huon Wilson | -66/+40 |
| 2013-06-11 | std: replace str::substr with the method. | Huon Wilson | -19/+9 |
| 2013-06-11 | std: remove str::to_chars | Huon Wilson | -10/+6 |
| 2013-06-11 | std: basic documentation for the new str methods | Huon Wilson | -20/+68 |
| 2013-06-10 | std: remove str::{connect,concat}*. | Huon Wilson | -86/+62 |
| 2013-06-10 | clean-up unused import warnings | Huon Wilson | -11/+1 |
| 2013-06-10 | std: fix tests | Huon Wilson | -13/+13 |
| 2013-06-10 | std: convert str::char_at* to methods. | Huon Wilson | -152/+146 |