summary refs log tree commit diff
path: root/src/libcore/str.rs
AgeCommit message (Expand)AuthorLines
2012-02-21core: Resolve a FIXME in str moduleBrian Anderson-3/+6
2012-02-18Merge pull request #1860 from erickt/masterBrian Anderson-46/+94
2012-02-17Add a win32-ignore attribute to a should-fail test.Graydon Hoare-0/+1
2012-02-16core: add str::find_from.Erick Tryzelaar-7/+46
2012-02-16core: rewrite str::byte_index to use vec functionsErick Tryzelaar-7/+14
2012-02-16core: slim down str.rs by importing some and none.Erick Tryzelaar-34/+36
2012-02-15Rewrite exhaustiveness checkerMarijn Haverbeke-2/+2
2012-02-15Fix bad line printing for parse errorsMarijn Haverbeke-0/+14
2012-02-14Merge pull request #1831 from killerswan/str_fixesBrian Anderson-50/+90
2012-02-13(core::str) more test casesKevin Cantu-1/+7
2012-02-13(core::str) added FIXME commentKevin Cantu-0/+2
2012-02-13(core::str) rename find_chars -> findKevin 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 functionsKevin 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-13from_cstr and from_cstr_len are not unsafe, I thinkTomoki Aonuma-2/+2
2012-02-13core::str::from_cstr uses from_cstr_lenTomoki Aonuma-3/+1
2012-02-13Avoid extra memory allocations in core::str::from_cstr_lenTomoki Aonuma-10/+10
2012-02-12(core::str) comments and cleanupKevin 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 andKevin Cantu-42/+50
2012-02-12(core::str) rename byte_len -> len_bytes and rename char_len -> lenKevin 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-12Add a test for core::str::from_cstr_lenTomoki Aonuma-0/+8
2012-02-12Implement core::str::from_cstr_len, close #1666Tomoki Aonuma-0/+19
2012-02-11(core::str) removed [r]index_byteKevin Cantu-44/+0
2012-02-11(core::str) added rindex and rewrote pop_char with char_range_at_reverseKevin Cantu-13/+91
2012-02-11using str::index...Kevin Cantu-1/+1
2012-02-11core::str: added index (char)Kevin Cantu-0/+27
2012-02-11core::str rename [r]index -> [r]index_bytesKevin Cantu-10/+12
2012-02-09Increase precedence of as operatorMarijn Haverbeke-17/+22
2012-02-08core: add str::as_bytes functionErick Tryzelaar-20/+31
2012-02-07Make process-spawning take environments and working directories, remove procs...Graydon Hoare-10/+4
2012-02-07core: add str::splitn_char and fix str::splitn_char_iterKevin Cantu-8/+48
2012-02-07core: make str::substr use char positions (and replace other uses)Kevin Cantu-18/+20
2012-02-07String split renaming:Kevin Cantu-127/+166
2012-02-05core: Implement str::escape with str::chars_iter.Erick Tryzelaar-1/+1
2012-02-05core: Resolve some FIXMEsBrian Anderson-2/+0
2012-02-05Adding str::reserveKevin Cantu-0/+10
2012-02-03Fix byte_len in char_len_range to be what it is advertised.Kevin Atkinson-3/+3
2012-02-03core: rename str::lteq to str::leTom Lee-7/+7
2012-02-01Rename str::char_slice -> str::sliceKevin Cantu-17/+17
2012-02-01Make the tests work, tooKevin Cantu-3/+9
2012-02-01Rename (again) str::unsafe::slice -> str::unsafe::slice_bytes andKevin Cantu-60/+12
2012-02-01Stop exporting str::slice and str::safe_slice (use unsafe instead)Kevin Cantu-2/+2
2012-02-01Make it work 1Kevin Cantu-6/+8
2012-02-01Copy str::slice -> str::unsafe::slice (and unsafe_slice)Kevin Cantu-3/+46
2012-02-01Actually export the str::unsafe module for nowKevin Cantu-1/+3
2012-02-01core: Ignore should_fail tests on win32Brian Anderson-0/+2
2012-01-31Re-implementing str::to_upper and str::to_lower using str::mapKevin Cantu-16/+11