| Age | Commit message (Expand) | Author | Lines |
| 2012-03-10 | core Remove vec::enum_chars/uint. Closes #1955 | Brian Anderson | -22/+0 |
| 2012-03-10 | core: Rename vec::tail_n to vec::tailn to match other fns | Brian Anderson | -2/+2 |
| 2012-03-10 | core: Clean up comments and exports | Brian Anderson | -35/+127 |
| 2012-03-09 | core: Convert to rustdoc | Brian Anderson | -2114/+1075 |
| 2012-03-09 | Add an infinite loop construct | Tim Chevalier | -2/+2 |
| 2012-03-09 | Add a couple more missing pieces to libc and os. | Graydon Hoare | -3/+18 |
| 2012-03-08 | Rename last to last_opt, last_unsafe to last | Tim Chevalier | -17/+14 |
| 2012-03-08 | Change util::unreachable to core::unreachable | Tim Chevalier | -1/+13 |
| 2012-03-08 | Rename last_total to last_unsafe | Tim Chevalier | -6/+8 |
| 2012-03-07 | add mutability annotations to libcore | Niko Matsakis | -198/+204 |
| 2012-03-06 | core: Resolve a FIXME in box::ptr_eq | Brian Anderson | -7/+2 |
| 2012-03-06 | More UTF-16 wrapping on win32. Close #1927. | Graydon Hoare | -86/+122 |
| 2012-03-06 | UTF-16-ify the win32 env routines. | Graydon Hoare | -13/+44 |
| 2012-03-06 | Export os, libc and path from libcore. | Graydon Hoare | -7/+2 |
| 2012-03-06 | core: Remove some explicit move capture clauses | Brian Anderson | -18/+18 |
| 2012-03-06 | core: Inline a bunch of unsafe functions | Brian Anderson | -0/+8 |
| 2012-03-05 | rt: Add a hack to fix a port detach bug | Brian Anderson | -0/+2 |
| 2012-03-05 | rt: Fix the atomic get_ref_count method to avoid races | Brian Anderson | -2/+0 |
| 2012-03-05 | rt: Properly block tasks while waiting for port detach | Brian Anderson | -2/+14 |
| 2012-03-05 | rt: Simplify the recv interface | Brian Anderson | -11/+12 |
| 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 |