summary refs log tree commit diff
path: root/src/libcore
AgeCommit message (Expand)AuthorLines
2012-02-17core: Make vec::push fasterBrian Anderson-2/+3
2012-02-17Clean up some of trans using block combinatorsMarijn Haverbeke-4/+1
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-16core: Add comm::select2Brian Anderson-1/+121
2012-02-15Rewrite exhaustiveness checkerMarijn Haverbeke-3/+4
2012-02-15Fix bad line printing for parse errorsMarijn Haverbeke-0/+14
2012-02-14core: Add core::futureBrian Anderson-1/+157
2012-02-14core: Add comm::peek for looking into the message queueBrian Anderson-0/+16
2012-02-14Merge pull request #1831 from killerswan/str_fixesBrian Anderson-50/+90
2012-02-14Add [X].len() to core, use it in trans modulesMarijn Haverbeke-1/+5
2012-02-13Merge pull request #1827 from uasi/from-cstrGraydon Hoare-15/+13
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-12core: Add iter::filter_mapBrian Anderson-0/+25
2012-02-12core: Add iterable implementation for stringsBrian Anderson-0/+6
2012-02-12core: Rename iter::reverse to iter::reversed for consistency with vec modBrian Anderson-4/+4
2012-02-12core: Add abs functions for signed integer typesBrian Anderson-0/+25
2012-02-12core: Add compl functions for the rest of the integer typesBrian Anderson-1/+46
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-12core: Implement foldl/r without copying the accumulatorBrian Anderson-12/+18
2012-02-12core: Add iter::foldrBrian Anderson-0/+19
2012-02-12core: Add iter::countBrian Anderson-0/+15
2012-02-12core: Add iter::reverseBrian Anderson-0/+10
2012-02-12core: Add iter::min/maxBrian Anderson-0/+45
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-36/+39
2012-02-12(core::str) move push_byte, push_bytes, pop_byte, and shift_byte into str::un...Kevin Cantu-65/+48
2012-02-12core: Formulate all unsigned max_values as 0 - 1 for consistencyBrian Anderson-3/+3
2012-02-11core: Add min/max functions for all int typesBrian Anderson-7/+31
2012-02-11core: Make uint::min/max pureBrian Anderson-2/+2
2012-02-11core: Fill out missing functions for basic typesBrian Anderson-27/+162
2012-02-11core: Add modules for remaining scalar typesBrian Anderson-5/+29
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-11core: Change the argument order for vec::contains, vec::countBrian Anderson-2/+2
2012-02-11core: Rename vec::member to vec::contains to match str modBrian Anderson-2/+2
2012-02-11Merge pull request #1812 from killerswan/indexing2Brian Anderson-33/+96
2012-02-11(core::str) removed [r]index_byteKevin Cantu-44/+0
2012-02-11(core::char) export is_digitKevin Cantu-1/+1