| Age | Commit message (Expand) | Author | Lines |
| 2013-09-25 | rustdoc: Change all code-blocks with a script | Alex Crichton | -26/+26 |
| 2013-09-24 | Do not imply that str is sometimes null-terminated. | Simon Sapin | -2/+2 |
| 2013-09-20 | auto merge of #9276 : alexcrichton/rust/dox, r=brson | bors | -6/+80 |
| 2013-09-17 | std: Fix an invalid read in from_c_multistring | Brian Anderson | -2/+2 |
| 2013-09-17 | Document a few undocumented modules in libstd | Alex Crichton | -6/+80 |
| 2013-09-16 | std: merge conflict cleanup from std::str | Jeff Olson | -1/+0 |
| 2013-09-16 | std: more work on from_c_multistring.. let it take an optional len param | Jeff Olson | -5/+17 |
| 2013-09-16 | std: win32 os::env() str parsing to str::raw::from_c_multistring + test | Jeff Olson | -0/+37 |
| 2013-09-16 | auto merge of #9108 : blake2-ppc/rust/hazards-on-overflow, r=alexcrichton | bors | -105/+78 |
| 2013-09-17 | std::str: Fix overflow problems in unsafe code | blake2-ppc | -105/+59 |
| 2013-09-16 | std::str: Add bench tests for StrVector::connect() and for str::push_str | blake2-ppc | -0/+19 |
| 2013-09-16 | Add an SendStr type | Marvin Löbel | -1/+16 |
| 2013-09-09 | rename `std::iterator` to `std::iter` | Daniel Micay | -8/+8 |
| 2013-09-05 | auto merge of #8997 : fhahn/rust/issue_8985, r=catamorphism,brson | bors | -48/+48 |
| 2013-09-05 | Rename str::from_bytes to str::from_utf8, closes #8985 | Florian Hahn | -48/+48 |
| 2013-09-05 | str: rm `map_chars`, replaced by iterators | Daniel Micay | -11/+0 |
| 2013-09-04 | std::str: Deny surrogates in is_utf8 | blake2-ppc | -3/+12 |
| 2013-09-04 | auto merge of #8977 : pnkfelix/rust/fsk-followup-on-6009-rebased, r=alexcrichton | bors | -1/+1 |
| 2013-09-04 | stop treating char as an integer type | Daniel Micay | -38/+8 |
| 2013-09-04 | Added explicit pub to several conditions. Enables completion of #6009. | Felix S. Klock II | -1/+1 |
| 2013-09-03 | auto merge of #8884 : blake2-ppc/rust/exact-size-hint, r=huonw | bors | -15/+6 |
| 2013-09-01 | std::iterator: Use ExactSize, inheriting DoubleEndedIterator | blake2-ppc | -1/+1 |
| 2013-08-30 | remove several 'ne' methods | Eric Martin | -4/+0 |
| 2013-08-30 | std::str: Use reverse enumerate and .rposition | blake2-ppc | -15/+6 |
| 2013-08-30 | auto merge of #8858 : blake2-ppc/rust/small-bugs, r=alexcrichton | bors | -16/+21 |
| 2013-08-30 | auto merge of #8857 : blake2-ppc/rust/std-str-remove, r=thestinger | bors | -40/+0 |
| 2013-08-29 | auto merge of #8842 : jfager/rust/remove-iter-module, r=pnkfelix | bors | -1/+1 |
| 2013-08-29 | std::str: Fix bug in .slice_chars() | blake2-ppc | -0/+4 |
| 2013-08-29 | std::str: Use CharIterator in NormalizationIterator | blake2-ppc | -16/+17 |
| 2013-08-29 | std::str: Remove functions count_chars, count_bytes | blake2-ppc | -40/+0 |
| 2013-08-29 | Remove the iter module. | Jason Fager | -1/+1 |
| 2013-08-27 | Remove offset_inbounds for an unsafe offset function | Alex Crichton | -1/+1 |
| 2013-08-26 | Add a Default trait. | Corey Richardson | -15/+12 |
| 2013-08-26 | auto merge of #8737 : blake2-ppc/rust/std-str-rsplit, r=huonw | bors | -73/+305 |
| 2013-08-26 | std::str: Tune CharSplitIterator after benchmarks | blake2-ppc | -55/+44 |
| 2013-08-26 | std::str: bench tests for .split_iter() | blake2-ppc | -0/+83 |
| 2013-08-25 | Add _opt variants to str byte-conversion functions | Kevin Ballard | -9/+108 |
| 2013-08-25 | std::str: Double-ended CharSplitIterator | blake2-ppc | -68/+228 |
| 2013-08-24 | Add OwnedStr::into_bytes | Steven Fackler | -1/+16 |
| 2013-08-23 | Add new function str.truncate() | Kevin Ballard | -0/+42 |
| 2013-08-22 | Enabled unit tests in std and extra. | Vadim Chugunov | -4/+0 |
| 2013-08-21 | auto merge of #8590 : blake2-ppc/rust/std-str, r=alexcrichton | bors | -131/+254 |
| 2013-08-22 | std::str: Add test for CharIterator .clone() | blake2-ppc | -0/+8 |
| 2013-08-21 | Add support for performing NFD and NFKD on strings | Florian Zeitz | -0/+143 |
| 2013-08-19 | std::str: Use iterators instead of while loops for CharSplitIterator | blake2-ppc | -33/+45 |
| 2013-08-19 | Add externfn macro and correctly label fixed_stack_segments | Niko Matsakis | -0/+1 |
| 2013-08-19 | std::str: Improve comments for CharIterator | blake2-ppc | -1/+9 |
| 2013-08-19 | std::str: Use CharOffsetIterator in slice_chars | blake2-ppc | -13/+14 |
| 2013-08-19 | std::str: Only check char boundary for end index in .slice_to() | blake2-ppc | -1/+2 |
| 2013-08-19 | std::str: Correct docstrings for lack of null terminator in ~str and &str | blake2-ppc | -24/+13 |