| Age | Commit message (Expand) | Author | Lines |
| 2013-08-03 | remove obsolete `foreach` keyword | Daniel Micay | -30/+30 |
| 2013-08-02 | std: Speed up str::is_utf8 | blake2-ppc | -35/+67 |
| 2013-08-01 | str: Add method .into_owned(self) -> ~str to Str | Kevin Ballard | -0/+12 |
| 2013-08-01 | std: Change `Times` trait to use `do` instead of `for` | blake2-ppc | -1/+1 |
| 2013-08-01 | migrate many `for` loops to `foreach` | Daniel Micay | -31/+32 |
| 2013-08-01 | make `in` and `foreach` get treated as keywords | Daniel Micay | -1/+1 |
| 2013-07-30 | std: Mark the static constants in str.rs as private | blake2-ppc | -10/+10 |
| 2013-07-30 | std: Add from_bytes test for utf-8 using codepoints above 0xffff | blake2-ppc | -0/+3 |
| 2013-07-30 | std: Deny overlong encodings in UTF-8 | blake2-ppc | -8/+45 |
| 2013-07-30 | std: Disallow bytes 0xC0, 0xC1 (192, 193) in utf-8 | blake2-ppc | -1/+1 |
| 2013-07-30 | auto merge of #8121 : thestinger/rust/offset, r=alexcrichton | bors | -19/+19 |
| 2013-07-30 | Added str::char_offset_iter() and str::rev_char_offset_iter() | Marvin Löbel | -590/+489 |
| 2013-07-30 | implement pointer arithmetic with GEP | Daniel Micay | -19/+19 |
| 2013-07-30 | std: Implement Extendable for hashmap, str and trie | blake2-ppc | -3/+24 |
| 2013-07-29 | std: Rename Iterator adaptor types to drop the -Iterator suffix | blake2-ppc | -4/+3 |
| 2013-07-29 | std: Implement FromIterator for ~str | blake2-ppc | -1/+23 |
| 2013-07-28 | Refactored vec and str iterators to remove prefixes | jmgrosen | -45/+45 |
| 2013-07-27 | auto merge of #8036 : sfackler/rust/container-impls, r=msullivan | bors | -8/+0 |
| 2013-07-26 | Consolidate raw representations of rust values | Alex Crichton | -29/+31 |
| 2013-07-25 | Added default impls for container methods | Steven Fackler | -8/+0 |
| 2013-07-24 | auto merge of #7996 : erickt/rust/cleanup-strs, r=erickt | bors | -178/+152 |
| 2013-07-24 | Change 'print(fmt!(...))' to printf!/printfln! in src/lib* | Birunthan Mohanathas | -1/+1 |
| 2013-07-23 | std: make str::append move self | Erick Tryzelaar | -6/+5 |
| 2013-07-23 | std: inline str::with_capacity and vec::with_capacity | Erick Tryzelaar | -5/+3 |
| 2013-07-23 | std: simplify str::as_imm_buf and vec::as_{imm,mut}_buf | Erick Tryzelaar | -5/+2 |
| 2013-07-23 | str: move as_mut_buf into OwnedStr, and make it `self` | Erick Tryzelaar | -18/+18 |
| 2013-07-23 | std: remove str::to_owned and str::raw::slice_bytes_owned | Erick Tryzelaar | -41/+22 |
| 2013-07-23 | std: rename str.as_buf to as_imm_buf, add str.as_mut_buf | Erick Tryzelaar | -65/+59 |
| 2013-07-23 | std: add test for str::as_c_str | Erick Tryzelaar | -0/+22 |
| 2013-07-23 | std: move StrUtil::as_c_str into StrSlice | Erick Tryzelaar | -45/+29 |
| 2013-07-23 | std: move str::as_buf into StrSlice | Erick Tryzelaar | -48/+48 |
| 2013-07-23 | std: rename str.as_bytes_with_null_consume to str.to_bytes_with_null | Erick Tryzelaar | -7/+6 |
| 2013-07-23 | std: wrap "long" utf8 lines. | Graydon Hoare | -2/+4 |
| 2013-07-22 | std: add preliminary str benchmark. | Graydon Hoare | -0/+45 |
| 2013-07-22 | new snapshot | Daniel Micay | -13/+0 |
| 2013-07-21 | auto merge of #7932 : blake2-ppc/rust/str-clear, r=huonw | bors | -1/+51 |
| 2013-07-20 | std: Implement Clone for VecIterator and iterators using it | blake2-ppc | -0/+7 |
| 2013-07-20 | str: Implement Container for ~str, @str and Mutable for ~str | blake2-ppc | -1/+51 |
| 2013-07-17 | librustc: Remove all uses of "copy". | Patrick Walton | -1/+8 |
| 2013-07-15 | remove headers from unique vectors | Daniel Micay | -1/+14 |
| 2013-07-11 | Optimize is_utf8 | Gary Linscott | -8/+16 |
| 2013-07-11 | char_range_at perf work | Gary Linscott | -28/+60 |
| 2013-07-08 | auto merge of #7612 : thestinger/rust/utf8, r=huonw | bors | -22/+2 |
| 2013-07-08 | Merge pull request #7595 from thestinger/iterator | Daniel Micay | -1/+1 |
| 2013-07-07 | remove some method resolve workarounds | Daniel Micay | -1/+1 |
| 2013-07-06 | remove extra::rope | Daniel Micay | -2/+1 |
| 2013-07-05 | str: stop encoding invalid out-of-range `char` | Daniel Micay | -22/+2 |
| 2013-07-04 | Convert vec::{as_imm_buf, as_mut_buf} to methods. | Huon Wilson | -3/+4 |
| 2013-07-01 | rustc: add a lint to enforce uppercase statics. | Huon Wilson | -40/+40 |
| 2013-06-30 | Specialize to_str_common for floats/integers in strconv | Alex Crichton | -3/+32 |