| Age | Commit message (Expand) | Author | Lines |
| 2013-06-12 | make util::NonCopyable a unit struct instead of a struct with a unit | Ben Blum | -4/+2 |
| 2013-06-12 | Prototyped a dynamic library facility interface | Steven Stewart-Gallus | -0/+207 |
| 2013-06-13 | std: make all strings Equiv-alent to each other, generalise Path.push_many to... | Huon Wilson | -9/+21 |
| 2013-06-12 | auto merge of #7073 : influenza/rust/iterator-doc-fixes, r=catamorphism | bors | -3/+3 |
| 2013-06-11 | auto merge of #7072 : thestinger/rust/ptr, r=catamorphism | bors | -13/+29 |
| 2013-06-12 | std: fix windows | Huon Wilson | -1/+1 |
| 2013-06-12 | std: fix method renaming. | Huon Wilson | -1/+1 |
| 2013-06-12 | std: generalise .trim_chars to use CharEq. | Huon Wilson | -42/+74 |
| 2013-06-12 | std: create Str trait for DRY. Use it on StrVector. | Huon Wilson | -85/+32 |
| 2013-06-12 | std: convert str::escape_* to methods. | Huon Wilson | -44/+34 |
| 2013-06-12 | std: convert str::replace to a method. | Huon Wilson | -33/+33 |
| 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 | -77/+48 |
| 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 | -137/+188 |
| 2013-06-12 | std: convert str::{*shift,pop}* to methods. | Huon Wilson | -61/+87 |
| 2013-06-12 | std: convert str::repeat to a method. | Huon Wilson | -28/+30 |
| 2013-06-12 | std: replace str::append with a method | Huon Wilson | -10/+30 |
| 2013-06-12 | std: convert {vec,str}::to_owned to methods. | Huon Wilson | -34/+32 |
| 2013-06-11 | auto merge of #7056 : alexcrichton/rust/issue-4727, r=catamorphism | bors | -22/+16 |
| 2013-06-11 | Iterator documentation fixes | Ron Dahlgren | -3/+3 |
| 2013-06-11 | fix the docstring for copy_nonoverlapping_memory | Daniel Micay | -9/+25 |
| 2013-06-11 | fix the ptr::set_memory docstring | Daniel Micay | -4/+4 |
| 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 | -83/+45 |
| 2013-06-11 | add Iterator implementations for Option | Daniel Micay | -0/+38 |
| 2013-06-11 | auto merge of #7047 : bblum/rust/bug_triage, r=graydon | bors | -22/+18 |
| 2013-06-11 | std: convert pow, hypot, atan2, log to take arguments by reference. | Huon Wilson | -20/+20 |
| 2013-06-10 | Tag a bunch of destructors that need mutable self with FIXME for #4330. Close... | Ben Blum | -2/+5 |
| 2013-06-10 | Replace str::raw::buf_as_slice with c_str_to_static_slice. Close #3843. | Ben Blum | -20/+13 |
| 2013-06-11 | fix tests, remove some warnings | Huon Wilson | -12/+1 |
| 2013-06-11 | std: replace str::is_{alphanumeric,whitespace} with the methods. | Huon Wilson | -25/+7 |
| 2013-06-11 | std: replace str::{starts,ends}_with with the method. | Huon Wilson | -52/+26 |
| 2013-06-11 | std: replace str::substr with the method. | Huon Wilson | -13/+3 |
| 2013-06-11 | std: remove str::to_chars | Huon Wilson | -5/+0 |
| 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 | -20/+3 |
| 2013-06-10 | clean-up unused import warnings | Huon Wilson | -1/+0 |
| 2013-06-10 | std: fix tests | Huon Wilson | -13/+13 |
| 2013-06-10 | std: convert str::char_at* to methods. | Huon Wilson | -131/+126 |
| 2013-06-10 | std: convert str::trim* to methods. | Huon Wilson | -110/+90 |
| 2013-06-10 | std: convert str::reserve* to methods, and methodise str::push_*. | Huon Wilson | -168/+170 |
| 2013-06-10 | std: remove str::contains in favour of the method | Huon Wilson | -39/+27 |
| 2013-06-10 | std: replace str::find_str* with a method | Huon Wilson | -115/+44 |
| 2013-06-10 | std: replace str::{any,all}_between with the iterator equivalent. | Huon Wilson | -60/+0 |
| 2013-06-10 | std: convert character-based str::find_* to methods. Add .slice_{to,from} met... | Huon Wilson | -371/+142 |
| 2013-06-10 | std: convert each_split_str to an iterator | Huon Wilson | -114/+112 |
| 2013-06-10 | std: fix compile & test | Huon Wilson | -0/+1 |
| 2013-06-10 | std: remove str::{len, slice, is_empty} in favour of methods. | Huon Wilson | -115/+98 |