| Age | Commit message (Expand) | Author | Lines |
| 2014-02-20 | move extra::test to libtest | Liigo Zhuang | -1/+2 |
| 2014-02-18 | auto merge of #12317 : huonw/rust/utf16, r=alexcrichton | bors | -45/+291 |
| 2014-02-19 | str: add a function for truncating a vector of u16 at NUL. | Huon Wilson | -0/+44 |
| 2014-02-18 | std: convert first_non_utf8_byte to use the iterator. | Huon Wilson | -61/+11 |
| 2014-02-18 | std::str: safen and optimize is_utf8. | Huon Wilson | -2/+77 |
| 2014-02-18 | std: make str::from_utf16 return an Option. | Huon Wilson | -18/+36 |
| 2014-02-17 | std: decode even numbered non-BMP planes in the UTF-16 decoder. | Huon Wilson | -2/+5 |
| 2014-02-17 | str: provide lossy UTF-16 support. | Huon Wilson | -23/+133 |
| 2014-02-17 | std: convert str::from_utf16 to an external iterator. | Huon Wilson | -27/+38 |
| 2014-02-17 | std: iteratize str::is_utf16 & add tests. | Huon Wilson | -18/+78 |
| 2014-02-17 | Remove CloneableTuple and ImmutableTuple traits | Brendan Zabarauskas | -3/+3 |
| 2014-02-14 | Fix all code examples | Alex Crichton | -1/+1 |
| 2014-02-14 | return value/use extra::test::black_box in benchmarks | lpy | -3/+3 |
| 2014-02-13 | remove duplicate function from std::ptr (is_null, is_not_null, offset, mut_of... | JeremyLetang | -8/+7 |
| 2014-02-13 | Add some missing Show implementations in libstd | Brendan Zabarauskas | -0/+2 |
| 2014-02-11 | str -- borrow fields of self for use in closure since self.iter is borrowed | Niko Matsakis | -5/+7 |
| 2014-02-07 | Delete send_str, rewrite clients on top of MaybeOwned<'static> | Kevin Ballard | -63/+234 |
| 2014-02-07 | Tweak from_utf8_lossy to return a new MaybeOwned enum | Kevin Ballard | -27/+94 |
| 2014-02-06 | Add new function str::from_utf8_lossy() | Kevin Ballard | -6/+179 |
| 2014-02-04 | auto merge of #11951 : dmanescu/rust/reserve-rename, r=huonw | bors | -21/+15 |
| 2014-02-04 | Rename reserve to reserve_exact and reserve_at_least to reserve | David Manescu | -21/+15 |
| 2014-02-02 | librustc: Remove `@str` from the language | Patrick Walton | -1/+0 |
| 2014-02-02 | libextra: Remove `@str` from all the libraries | Patrick Walton | -119/+11 |
| 2014-02-01 | auto merge of #11930 : bjz/rust/next_power_of_two, r=huonw | bors | -3/+2 |
| 2014-01-31 | Fix minor doc typos | Virgile Andreani | -2/+2 |
| 2014-02-01 | Remove some unused imports | Brendan Zabarauskas | -1/+0 |
| 2014-02-01 | Make next_power_of_two generic for unsigned integers | Brendan Zabarauskas | -2/+2 |
| 2014-01-28 | Rename CopyableTuple to CloneableTuple | Virgile Andreani | -1/+1 |
| 2014-01-28 | Rename OwnedCopyableVector to OwnedCloneableVector | Virgile Andreani | -1/+1 |
| 2014-01-26 | std,extra: Make some types public and other private. | Huon Wilson | -1/+1 |
| 2014-01-23 | Update flip() to be rev(). | Sean Chalmers | -12/+12 |
| 2014-01-23 | Rename Invert to Flip - Issue 10632 | Sean Chalmers | -12/+12 |
| 2014-01-21 | [std::str] Remove the now unused not_utf8 condition. | Simon Sapin | -8/+0 |
| 2014-01-21 | [std::str] Rename from_utf8_owned_opt() to from_utf8_owned(), drop the old fr... | Simon Sapin | -30/+4 |
| 2014-01-21 | [std::str] Rename from_utf8_opt() to from_utf8(), drop the old from_utf8() be... | Simon Sapin | -30/+5 |
| 2014-01-21 | [std::vec] Rename .shift_opt() to .shift(), drop the old .shift() behavior | Simon Sapin | -1/+1 |
| 2014-01-21 | [std::vec] Rename .head_opt() to .head(), drop the old .head() behavior | Simon Sapin | -1/+1 |
| 2014-01-21 | Remove unnecessary parentheses. | Huon Wilson | -3/+3 |
| 2014-01-18 | Rename iterators for consistency | Palmer Cox | -78/+78 |
| 2014-01-11 | Remove re-exports of std::io::stdio::{print, println} in the prelude. | Brendan Zabarauskas | -2/+2 |
| 2014-01-07 | stdtest: Fix all leaked trait imports | Alex Crichton | -5/+2 |
| 2014-01-07 | std: Fill in all missing imports | Alex Crichton | -4/+8 |
| 2014-01-07 | auto merge of #11329 : fhahn/rust/unused-cast-lint2, r=alexcrichton | bors | -2/+2 |
| 2014-01-06 | auto merge of #10826 : SimonSapin/rust/str-insert, r=brson | bors | -0/+42 |
| 2014-01-06 | Remove some unnecessary type casts | Florian Hahn | -2/+2 |
| 2014-01-04 | Don't allow newtype structs to be dereferenced. #6246 | Brian Anderson | -2/+6 |
| 2013-12-31 | Add .insert() and .insert_char() methods to ~str. | Simon Sapin | -0/+42 |
| 2013-12-31 | Fix tests | Alan Andrade | -5/+9 |
| 2013-12-27 | std: uniform modules titles for doc | Luca Bruno | -1/+1 |
| 2013-12-23 | std: Fix all code examples | Alex Crichton | -6/+8 |