| Age | Commit message (Expand) | Author | Lines |
| 2012-03-05 | rewrite vec to be more unsafe, more inlined | Niko Matsakis | -2/+19 |
| 2012-03-05 | Port fsync, waitpid and remove_file to core::{os,libc}. | Graydon Hoare | -1/+121 |
| 2012-03-02 | core: Fix os::load_self types on FreeBSD | Brian Anderson | -1/+1 |
| 2012-03-02 | Sadly, vec::init_elt_mut vanished since last (rushed) rebase. | Graydon Hoare | -1/+1 |
| 2012-03-02 | First cut at consolidated core::os module built on core::libc. | Graydon Hoare | -13/+1267 |
| 2012-03-02 | core: Remove _mut functions from vec | Brian Anderson | -86/+20 |
| 2012-03-02 | Add some utf16 routines for OS API interop. | Graydon Hoare | -0/+128 |
| 2012-03-02 | retool inline encoding to handle methods, fix tests | Niko Matsakis | -5/+4 |
| 2012-02-29 | core: Change a number of arguments in vec to const vecs | Brian Anderson | -31/+32 |
| 2012-02-29 | add the ability to snag the frame so we can verify that we are inlining | Niko Matsakis | -0/+5 |
| 2012-02-28 | libcore: Remove vec::to_ptr in favor of vec::unsafe::to_ptr. Closes #1829. | Patrick Walton | -13/+6 |
| 2012-02-28 | expose float::pow_with_uint. | Erick Tryzelaar | -6/+7 |
| 2012-02-28 | core/std: whitespace fixes. | Erick Tryzelaar | -1/+1 |
| 2012-02-28 | add #[inline] to vec::iter | Niko Matsakis | -0/+1 |
| 2012-02-27 | Add libc module to libcore and utility file to help generate it. | Graydon Hoare | -7/+907 |
| 2012-02-24 | Encode/decode AST into metadata, re-instantiate inlined items | Niko Matsakis | -1/+0 |
| 2012-02-23 | Finish cleanup of core::str | Marijn Haverbeke | -422/+288 |
| 2012-02-23 | Optimize str::replace | Marijn Haverbeke | -40/+49 |
| 2012-02-23 | Various cleanups and optimizations in core::str | Marijn Haverbeke | -372/+255 |
| 2012-02-23 | Make str::pop_char and str::unsafe::pop_byte efficient | Marijn Haverbeke | -14/+15 |
| 2012-02-23 | (core::str) comments | Kevin Cantu | -11/+18 |
| 2012-02-23 | (core::str) rename ++ | Kevin Cantu | -2/+2 |
| 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 | -60/+55 |
| 2012-02-23 | (core::str) replace uses of unsafe::slice_bytes; replace find[_from]_bytes wi... | Kevin Cantu | -44/+44 |
| 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 | -19/+21 |
| 2012-02-22 | Fix uint/u64 confusion | Marijn Haverbeke | -1/+1 |
| 2012-02-22 | Make the various from_str functions return options | Marijn Haverbeke | -236/+158 |
| 2012-02-22 | Add core::to_str module | Marijn Haverbeke | -0/+96 |
| 2012-02-22 | Remove preconditions from libraries | Marijn Haverbeke | -19/+10 |
| 2012-02-21 | core: Fix unused variable warning | Brian Anderson | -1/+1 |
| 2012-02-21 | core: Fix to_str_exact for floats with no decimal component | Brian Anderson | -1/+7 |
| 2012-02-21 | core: Add option::unwrap | Brian Anderson | -0/+51 |
| 2012-02-21 | core: Resolve a FIXME in str module | Brian Anderson | -3/+6 |
| 2012-02-20 | core: Remove a useless test from option mod | Brian Anderson | -3/+0 |
| 2012-02-20 | core: New task API | Brian Anderson | -427/+774 |
| 2012-02-18 | core: Export future mod | Brian Anderson | -1/+2 |
| 2012-02-18 | core: Define futures in terms of local functions, of which port::recv is one ... | Brian Anderson | -20/+43 |
| 2012-02-18 | Merge pull request #1860 from erickt/master | Brian Anderson | -46/+94 |