| Age | Commit message (Expand) | Author | Lines |
| 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 |
| 2012-02-07 | core: make str::substr use char positions (and replace other uses) | Kevin Cantu | -18/+20 |
| 2012-02-07 | String split renaming: | Kevin Cantu | -127/+166 |
| 2012-02-05 | core: Implement str::escape with str::chars_iter. | Erick Tryzelaar | -1/+1 |
| 2012-02-05 | core: Resolve some FIXMEs | Brian Anderson | -2/+0 |
| 2012-02-05 | Adding str::reserve | Kevin Cantu | -0/+10 |
| 2012-02-03 | Fix byte_len in char_len_range to be what it is advertised. | Kevin Atkinson | -3/+3 |
| 2012-02-03 | core: rename str::lteq to str::le | Tom Lee | -7/+7 |
| 2012-02-01 | Rename str::char_slice -> str::slice | Kevin Cantu | -17/+17 |
| 2012-02-01 | Make the tests work, too | Kevin Cantu | -3/+9 |
| 2012-02-01 | Rename (again) str::unsafe::slice -> str::unsafe::slice_bytes and | Kevin Cantu | -60/+12 |
| 2012-02-01 | Stop exporting str::slice and str::safe_slice (use unsafe instead) | Kevin Cantu | -2/+2 |
| 2012-02-01 | Make it work 1 | Kevin Cantu | -6/+8 |
| 2012-02-01 | Copy str::slice -> str::unsafe::slice (and unsafe_slice) | Kevin Cantu | -3/+46 |
| 2012-02-01 | Actually export the str::unsafe module for now | Kevin Cantu | -1/+3 |
| 2012-02-01 | core: Ignore should_fail tests on win32 | Brian Anderson | -0/+2 |
| 2012-01-31 | Re-implementing str::to_upper and str::to_lower using str::map | Kevin Cantu | -16/+11 |
| 2012-01-31 | Add str::split_chars_iter and str::splitn_chars_iter | Kevin Cantu | -5/+59 |
| 2012-01-31 | Rename str::iter_chars -> str::chars_iter | Kevin Cantu | -35/+6 |
| 2012-01-31 | Rename str::to_chars -> str::chars | Kevin Cantu | -6/+13 |
| 2012-01-31 | Rename str::loop_chars to str::all, | Kevin Cantu | -33/+7 |
| 2012-01-31 | Comment fixes in str | Kevin Cantu | -17/+11 |
| 2012-01-31 | Rename str::from_byte(s) to str::unsafe::from_byte(s), | Kevin Cantu | -41/+46 |
| 2012-01-25 | Change FIXME comments in str | Kevin Cantu | -2/+2 |
| 2012-01-25 | Making str::from_cstr UTF-8 safe | Kevin Cantu | -3/+3 |
| 2012-01-24 | Replace uses of str::unsafe_from_byte | Kevin Cantu | -1/+1 |
| 2012-01-24 | Changed type of str::from_bytes and added str::from_byte | Kevin Cantu | -18/+43 |