| Age | Commit message (Expand) | Author | Lines |
| 2013-06-30 | Specialize to_str_common for floats/integers in strconv | Alex Crichton | -3/+32 |
| 2013-06-29 | auto merge of #7475 : Seldaek/rust/fixsplit, r=cmr | bors | -1/+10 |
| 2013-06-29 | Removing a lot of usage of '&const' | Alex Crichton | -4/+4 |
| 2013-06-29 | 'Borrow' stack closures rather than copying them (e.g., "|x|f(x)"), in prep f... | Ben Blum | -2/+2 |
| 2013-06-29 | Optimize str::each_split_within when it is called with large limits | Jordi Boggiano | -1/+10 |
| 2013-06-28 | Rewrite each_path to allow performance improvements in the future. | Patrick Walton | -10/+11 |
| 2013-06-28 | librustc: Fix merge fallout. | Patrick Walton | -2/+4 |
| 2013-06-28 | librustc: Rewrite reachability and forbid duplicate methods in type implement... | Patrick Walton | -1/+2 |
| 2013-06-28 | libstd: Fix merge fallout. | Patrick Walton | -2/+3 |
| 2013-06-28 | librustc: Disallow "mut" from distributing over bindings. | Patrick Walton | -1/+69 |
| 2013-06-27 | auto merge of #7430 : huonw/rust/vec-kill, r=thestinger | bors | -4/+5 |
| 2013-06-28 | std: silence some test warnings. | Huon Wilson | -1/+2 |
| 2013-06-28 | Convert vec::{reserve, reserve_at_least, capacity} to methods. | Huon Wilson | -3/+3 |
| 2013-06-24 | Merge remote-tracking branch 'reusee/master' into HEAD | Brian Anderson | -1/+1 |
| 2013-06-24 | remove old_iter | Daniel Micay | -2/+0 |
| 2013-06-23 | vec: remove BaseIter implementation | Daniel Micay | -5/+5 |
| 2013-06-22 | replaced some 'std::' with 'extra::' in comments | reus | -1/+1 |
| 2013-06-21 | replace vec::find with the IteratorUtil method | Daniel Micay | -1/+1 |
| 2013-06-21 | vec: rm old_iter implementations, except BaseIter | Daniel Micay | -1/+1 |
| 2013-06-18 | replace #[inline(always)] with #[inline]. r=burningtree. | Graydon Hoare | -44/+44 |
| 2013-06-17 | std: add Zero impls for &[] and &str. | Huon Wilson | -0/+20 |
| 2013-06-16 | auto merge of #7142 : alexcrichton/rust/deriving-zero, r=pcwalton | bors | -0/+11 |
| 2013-06-16 | std: allow any sort of string to be Added with +. | Huon Wilson | -2/+22 |
| 2013-06-16 | std: test-fixes, remove warnings, syntax highlighting for code examples. | Huon Wilson | -3/+3 |
| 2013-06-16 | std: continue improving the comparison trait impls for str. | Huon Wilson | -166/+128 |
| 2013-06-16 | std: simplify the string comparison implementations, using iterators. | Huon Wilson | -30/+14 |
| 2013-06-16 | std: convert str::to_utf16 to a method. | Huon Wilson | -27/+28 |
| 2013-06-16 | std: convert str::{map,levdistance,subslice_offset} to methods. | Huon Wilson | -108/+110 |
| 2013-06-14 | Add Zero impls for lots of common types | Alex Crichton | -0/+11 |
| 2013-06-13 | Revert "std: convert {vec,str}::to_owned to methods." | Brian Anderson | -17/+13 |
| 2013-06-13 | std: remove the invalid NullTerminatedStr instance for &'static str. | Huon Wilson | -16/+0 |
| 2013-06-13 | std: make all strings Equiv-alent to each other, generalise Path.push_many to... | Huon Wilson | -2/+14 |
| 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 | -73/+44 |
| 2013-06-12 | std: unify the str -> [u8] functions as 3 methods: .as_bytes() and .as_bytes_... | Huon Wilson | -80/+134 |
| 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 | -15/+19 |
| 2013-06-10 | Replace str::raw::buf_as_slice with c_str_to_static_slice. Close #3843. | Ben Blum | -5/+12 |
| 2013-06-11 | fix tests, remove some warnings | Huon Wilson | -10/+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 | -50/+24 |
| 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 |