| Age | Commit message (Expand) | Author | Lines |
| 2012-02-12 | core: Add iterable implementation for strings | Brian Anderson | -0/+6 |
| 2012-02-12 | core: Rename iter::reverse to iter::reversed for consistency with vec mod | Brian Anderson | -4/+4 |
| 2012-02-12 | core: Add abs functions for signed integer types | Brian Anderson | -0/+25 |
| 2012-02-12 | core: Add compl functions for the rest of the integer types | Brian Anderson | -1/+46 |
| 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: Implement foldl/r without copying the accumulator | Brian Anderson | -12/+18 |
| 2012-02-12 | core: Add iter::foldr | Brian Anderson | -0/+19 |
| 2012-02-12 | core: Add iter::count | Brian Anderson | -0/+15 |
| 2012-02-12 | core: Add iter::reverse | Brian Anderson | -0/+10 |
| 2012-02-12 | core: Add iter::min/max | Brian Anderson | -0/+45 |
| 2012-02-13 | build: Temporarily retrieve FreeBSD snapshots from jyyou's server | Brian Anderson | -0/+4 |
| 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 | -48/+56 |
| 2012-02-12 | (core::str) rename byte_len -> len_bytes and rename char_len -> len | Kevin Cantu | -119/+123 |
| 2012-02-12 | (core::str) move push_byte, push_bytes, pop_byte, and shift_byte into str::un... | Kevin Cantu | -85/+70 |
| 2012-02-12 | core: Formulate all unsigned max_values as 0 - 1 for consistency | Brian Anderson | -3/+3 |
| 2012-02-11 | core: Add min/max functions for all int types | Brian Anderson | -7/+31 |
| 2012-02-11 | core: Make uint::min/max pure | Brian Anderson | -2/+2 |
| 2012-02-11 | core: Fill out missing functions for basic types | Brian Anderson | -27/+162 |
| 2012-02-11 | core: Add modules for remaining scalar types | Brian Anderson | -5/+29 |
| 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 | test: Fix cros-crate-glob-collision | Brian Anderson | -2/+2 |
| 2012-02-11 | core: Change the argument order for vec::contains, vec::count | Brian Anderson | -12/+12 |
| 2012-02-11 | core: Rename vec::member to vec::contains to match str mod | Brian Anderson | -12/+12 |
| 2012-02-11 | Merge pull request #1812 from killerswan/indexing2 | Brian Anderson | -87/+151 |
| 2012-02-11 | (core::str) removed [r]index_byte | Kevin Cantu | -44/+0 |
| 2012-02-11 | (core::char) export is_digit | Kevin Cantu | -1/+1 |
| 2012-02-11 | using str::rindex... | Kevin Cantu | -21/+23 |
| 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 | -34/+33 |
| 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 | -20/+22 |
| 2012-02-11 | core: added char::is_digit (matching Nd, Nl, No) | Kevin Cantu | -1/+19 |
| 2012-02-11 | core: added a rough char::is_ascii | Kevin Cantu | -0/+11 |
| 2012-02-11 | Merge pull request #1810 from uasi/fix-typo | Brian Anderson | -1/+1 |
| 2012-02-11 | correct fully qualified type names to include the crate; add tests (take 2) | Niko Matsakis | -2/+27 |
| 2012-02-12 | Fix typo in either.rs | Tomoki Aonuma | -1/+1 |
| 2012-02-11 | rewrite to use ctypes types | Niko Matsakis | -1/+1 |
| 2012-02-11 | make bind syntax unnecessary: just use _ for one of the arguments | Niko Matsakis | -55/+66 |
| 2012-02-11 | Revert prior commit until I have time to track down the valgrind error | Niko Matsakis | -27/+2 |
| 2012-02-10 | correct fully qualified type names to include the crate; add tests | Niko Matsakis | -2/+27 |
| 2012-02-10 | remove executable that was accidentally included | Niko Matsakis | -0/+0 |
| 2012-02-10 | create serialization lib and update serializer to use it | Niko Matsakis | -39/+304 |
| 2012-02-10 | use absolute names when pretty-printing types | Niko Matsakis | -56/+73 |
| 2012-02-10 | put serializer into the build and encode full item paths | Niko Matsakis | -29/+217 |
| 2012-02-10 | create serializer project which autogenerates serialization code | Niko Matsakis | -1/+1010 |