| Age | Commit message (Expand) | Author | Lines |
| 2012-02-23 | (core::str) rename substr_len_bytes to substr_len, and delete unused byte_ind... | Kevin Cantu | -22/+1 |
| 2012-02-23 | (core::str) remove len_bytes alias | Kevin Cantu | -52/+47 |
| 2012-02-23 | (core::str) replace uses of unsafe::slice_bytes; replace find[_from]_bytes wi... | Kevin Cantu | -40/+40 |
| 2012-02-23 | (core::str) stop using index_chars | Kevin Cantu | -3/+1 |
| 2012-02-23 | (core::str) replace byte_index[_from] with index[_from] | Kevin Cantu | -2/+4 |
| 2012-02-23 | (core::str) do some replacements | Kevin Cantu | -2/+3 |
| 2012-02-23 | (core::str) add index, index_from, rindex which return byte positions of char... | Kevin Cantu | -15/+76 |
| 2012-02-23 | (core::str) add a safe byte slice and maybe_slice ++ | Kevin Cantu | -1/+1 |
| 2012-02-23 | (core::str) add a safe byte slice and maybe_slice | Kevin Cantu | -0/+77 |
| 2012-02-23 | (core::char) rename slice -> slice_chars | Kevin Cantu | -15/+15 |
| 2012-02-23 | (core::str) rename rindex -> rindex_chars | Kevin Cantu | -8/+8 |
| 2012-02-23 | (core::str) rename index -> index_chars | Kevin Cantu | -9/+7 |
| 2012-02-23 | (core::str) make len an alias for len_bytes ++ | Kevin Cantu | -2/+2 |
| 2012-02-23 | (core::str) make len an alias for len_bytes | Kevin Cantu | -4/+2 |
| 2012-02-23 | (core::str) mostly rename len -> len_chars | Kevin Cantu | -16/+18 |
| 2012-02-22 | Remove preconditions from libraries | Marijn Haverbeke | -7/+2 |
| 2012-02-21 | core: Resolve a FIXME in str module | Brian Anderson | -3/+6 |
| 2012-02-18 | Merge pull request #1860 from erickt/master | Brian Anderson | -46/+94 |
| 2012-02-17 | Add a win32-ignore attribute to a should-fail test. | Graydon Hoare | -0/+1 |
| 2012-02-16 | core: add str::find_from. | Erick Tryzelaar | -7/+46 |
| 2012-02-16 | core: rewrite str::byte_index to use vec functions | Erick Tryzelaar | -7/+14 |
| 2012-02-16 | core: slim down str.rs by importing some and none. | Erick Tryzelaar | -34/+36 |
| 2012-02-15 | Rewrite exhaustiveness checker | Marijn Haverbeke | -2/+2 |
| 2012-02-15 | Fix bad line printing for parse errors | Marijn Haverbeke | -0/+14 |
| 2012-02-14 | Merge pull request #1831 from killerswan/str_fixes | Brian Anderson | -50/+90 |
| 2012-02-13 | (core::str) more test cases | Kevin Cantu | -1/+7 |
| 2012-02-13 | (core::str) added FIXME comment | Kevin Cantu | -0/+2 |
| 2012-02-13 | (core::str) rename find_chars -> find | Kevin Cantu | -64/+37 |
| 2012-02-13 | (core::str) add find_bytes and export it... | Kevin Cantu | -12/+21 |
| 2012-02-13 | (core::str) add find_chars and b2c_pos functions | Kevin Cantu | -0/+50 |
| 2012-02-13 | (core::str) use slice_bytes in starts_with for a little bit less string trave... | Kevin Cantu | -4/+4 |
| 2012-02-13 | from_cstr and from_cstr_len are not unsafe, I think | Tomoki Aonuma | -2/+2 |
| 2012-02-13 | core::str::from_cstr uses from_cstr_len | Tomoki Aonuma | -3/+1 |
| 2012-02-13 | Avoid extra memory allocations in core::str::from_cstr_len | Tomoki Aonuma | -10/+10 |
| 2012-02-12 | (core::str) comments and cleanup | Kevin Cantu | -9/+2 |
| 2012-02-12 | (core::str) fixed replace, fixed starts_with, and added more find/contains/re... | Kevin Cantu | -5/+62 |
| 2012-02-12 | (core::str) rename byte_len_range -> substr_len_bytes and | Kevin Cantu | -42/+50 |
| 2012-02-12 | (core::str) rename byte_len -> len_bytes and rename char_len -> len | Kevin Cantu | -25/+28 |
| 2012-02-12 | (core::str) move push_byte, push_bytes, pop_byte, and shift_byte into str::un... | Kevin Cantu | -65/+48 |
| 2012-02-12 | Add a test for core::str::from_cstr_len | Tomoki Aonuma | -0/+8 |
| 2012-02-12 | Implement core::str::from_cstr_len, close #1666 | Tomoki Aonuma | -0/+19 |
| 2012-02-11 | (core::str) removed [r]index_byte | Kevin Cantu | -44/+0 |
| 2012-02-11 | (core::str) added rindex and rewrote pop_char with char_range_at_reverse | Kevin Cantu | -13/+91 |
| 2012-02-11 | using str::index... | Kevin Cantu | -1/+1 |
| 2012-02-11 | core::str: added index (char) | Kevin Cantu | -0/+27 |
| 2012-02-11 | core::str rename [r]index -> [r]index_bytes | Kevin Cantu | -10/+12 |
| 2012-02-09 | Increase precedence of as operator | Marijn Haverbeke | -17/+22 |
| 2012-02-08 | core: add str::as_bytes function | Erick Tryzelaar | -20/+31 |
| 2012-02-07 | Make process-spawning take environments and working directories, remove procs... | Graydon Hoare | -10/+4 |
| 2012-02-07 | core: add str::splitn_char and fix str::splitn_char_iter | Kevin Cantu | -8/+48 |