| Age | Commit message (Expand) | Author | Lines |
| 2013-06-16 | Remove moves from *T and implement in another way | Niko Matsakis | -1/+1 |
| 2013-06-16 | Add copies to type params with Copy bound | Niko Matsakis | -39/+40 |
| 2013-06-16 | auto merge of #7160 : kballard/rust/terminfo-parm-i-fix, r=thestinger | bors | -3/+14 |
| 2013-06-16 | auto merge of #7123 : huonw/rust/more-str, r=thestinger | bors | -20/+2 |
| 2013-06-16 | remove unused imports | Huon Wilson | -18/+1 |
| 2013-06-15 | rm vec::uniq_len | Daniel Micay | -17/+14 |
| 2013-06-16 | std: continue improving the comparison trait impls for str. | Huon Wilson | -2/+1 |
| 2013-06-15 | Fix terminfo::param %i op | Kevin Ballard | -3/+14 |
| 2013-06-15 | auto merge of #7109 : bblum/rust/rwlocks, r=brson | bors | -86/+221 |
| 2013-06-15 | auto merge of #7133 : kballard/rust/terminfo-parm, r=thestinger | bors | -97/+321 |
| 2013-06-14 | rm MutableIter | Daniel Micay | -1/+1 |
| 2013-06-14 | add IteratorUtil to the prelude | Daniel Micay | -20/+2 |
| 2013-06-14 | Fix line lengths in terminfo | Kevin Ballard | -6/+12 |
| 2013-06-14 | Implement terminfo param conditionals | Kevin Ballard | -18/+129 |
| 2013-06-14 | Fix a bunch of failure cases in terminfo | Kevin Ballard | -84/+161 |
| 2013-06-14 | Don't require &mut [Param] with terminfo::parm::expand() | Kevin Ballard | -7/+11 |
| 2013-06-14 | Tweak terminfo::parm::expand function signature | Kevin Ballard | -16/+27 |
| 2013-06-14 | Tweak new terminfo logical operator support | Kevin Ballard | -27/+12 |
| 2013-06-14 | Various terminfo parameterization changes | Corey Richardson | -4/+34 |
| 2013-06-13 | Revert "std: convert {vec,str}::to_owned to methods." | Brian Anderson | -27/+28 |
| 2013-06-13 | Improve comments in sync and arc a bit more. | Ben Blum | -7/+9 |
| 2013-06-13 | Change sync::RWlock implementation to use atomic uint instead of exclusive, f... | Ben Blum | -57/+80 |
| 2013-06-13 | Add a test case for #7065. | Ben Blum | -0/+62 |
| 2013-06-13 | Thread order_lock through rwlock condvars for reacquiring access_lock. Fixes ... | Ben Blum | -22/+72 |
| 2013-06-12 | remove bitrotted cant_nest field from RWARC (the #[mutable] tag suffices) | Ben Blum | -3/+1 |
| 2013-06-12 | std: generalise .trim_chars to use CharEq. | Huon Wilson | -1/+1 |
| 2013-06-12 | std: convert str::replace to a method. | Huon Wilson | -2/+1 |
| 2013-06-12 | std: remove substr & str::count_*, methodise char_len, implement slice_chars. | Huon Wilson | -15/+15 |
| 2013-06-12 | std: unify the str -> [u8] functions as 3 methods: .as_bytes() and .as_bytes_... | Huon Wilson | -42/+37 |
| 2013-06-12 | std: convert str::repeat to a method. | Huon Wilson | -3/+3 |
| 2013-06-12 | std: convert {vec,str}::to_owned to methods. | Huon Wilson | -27/+27 |
| 2013-06-11 | auto merge of #7055 : thestinger/rust/iterator, r=catamorphism | bors | -13/+14 |
| 2013-06-11 | option: remove redundant old_iter impls | Daniel Micay | -13/+14 |
| 2013-06-11 | auto merge of #7035 : influenza/rust/getopts-doc-update, r=bstrie | bors | -14/+15 |
| 2013-06-11 | auto merge of #7047 : bblum/rust/bug_triage, r=graydon | bors | -1/+0 |
| 2013-06-11 | extra: implement .norm(), and Polar conversion functions for complex numbers. | Huon Wilson | -14/+63 |
| 2013-06-10 | terminfo: Support more terminfo directory structures | Kevin Ballard | -2/+13 |
| 2013-06-10 | Remove 'this could be clearer' FIXME. Looks fine. Close #2618. | Ben Blum | -1/+0 |
| 2013-06-11 | fix tests, remove some warnings | Huon Wilson | -5/+2 |
| 2013-06-11 | std: replace str::{starts,ends}_with with the method. | Huon Wilson | -5/+5 |
| 2013-06-11 | std: replace str::substr with the method. | Huon Wilson | -3/+3 |
| 2013-06-10 | std: remove str::{connect,concat}*. | Huon Wilson | -7/+7 |
| 2013-06-10 | clean-up unused import warnings | Huon Wilson | -2/+0 |
| 2013-06-10 | std: convert str::char_at* to methods. | Huon Wilson | -13/+12 |
| 2013-06-10 | std: convert str::trim* to methods. | Huon Wilson | -1/+1 |
| 2013-06-10 | std: convert str::reserve* to methods, and methodise str::push_*. | Huon Wilson | -42/+40 |
| 2013-06-10 | std: remove str::contains in favour of the method | Huon Wilson | -8/+8 |
| 2013-06-10 | std: replace str::find_str* with a method | Huon Wilson | -2/+2 |
| 2013-06-10 | std: replace str::{any,all}_between with the iterator equivalent. | Huon Wilson | -3/+2 |
| 2013-06-10 | std: remove str::{len, slice, is_empty} in favour of methods. | Huon Wilson | -40/+37 |