| Age | Commit message (Expand) | Author | Lines |
| 2012-06-26 | More perf tweaks (issue #2719) | Eric Holk | -3/+3 |
| 2012-06-25 | Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725. | Michael Sullivan | -126/+127 |
| 2012-06-25 | Some perf fixes, although vec::slice is still too slow (Issue #2719) | Eric Holk | -1/+1 |
| 2012-06-25 | core: Convert declarations to not use the trailing 'unsafe' notation | Brian Anderson | -163/+192 |
| 2012-06-21 | Tag all remaining FIXMEs with bugs. Install rule in tidy script to enforce this. | Graydon Hoare | -2/+2 |
| 2012-06-21 | Move vector addition out of trans and into libcore. | Eric Holk | -2/+3 |
| 2012-06-20 | Comments only: typos | Tim Chevalier | -1/+1 |
| 2012-06-14 | Comments only: annotate FIXME in core::str | Tim Chevalier | -1/+1 |
| 2012-06-12 | Convert most str and vec fns to slices | Erick Tryzelaar | -99/+104 |
| 2012-06-08 | Merge pull request #2559 from mozilla/incoming | Patrick Walton | -3/+18 |
| 2012-06-08 | core: "inlune" is not an attribute | Patrick Walton | -1/+1 |
| 2012-06-08 | core: Implement string equal natively to save a call into the shape code. Sha... | Patrick Walton | -2/+17 |
| 2012-06-08 | Convert reinterpret_cast + forget to 'transmute' | Brian Anderson | -14/+5 |
| 2012-06-07 | Use #[cfg(unix)] and #[cfg(windows)] everywhere | Brian Anderson | -4/+4 |
| 2012-06-06 | miscellaneous pure annotations and other small changes. | Niko Matsakis | -97/+118 |
| 2012-06-04 | Machine types are different from int/uint, etc (Issue #2187) | Eric Holk | -1/+3 |
| 2012-06-02 | core: Add str::is_alphanumeric fn and method | Brian Anderson | -0/+16 |
| 2012-06-02 | add some purity annotations in core | Niko Matsakis | -1/+1 |
| 2012-05-31 | Implement 2 kinds of char / str escaping. Use in rustc. Close #2306. | Graydon Hoare | -0/+52 |
| 2012-05-07 | core: Export str::unsafe::from_buf_len/from_c_str_len | Brian Anderson | -0/+2 |
| 2012-04-30 | Revert "Eliminate a copy in syntax::parse::new_parser_from_file" | Tim Chevalier | -21/+0 |
| 2012-04-30 | Eliminate a copy in syntax::parse::new_parser_from_file | Tim Chevalier | -0/+21 |
| 2012-04-25 | More slice use in vec, io, str, ebml, metadata encoder and decoder. | Graydon Hoare | -0/+12 |
| 2012-04-20 | Add vec::unpack_slice, expose str::unpack_slice. | Graydon Hoare | -0/+1 |
| 2012-04-18 | Add str/& component accessor and test. | Graydon Hoare | -0/+27 |
| 2012-04-14 | core: Use tilde-fences in docs | Brian Anderson | -2/+2 |
| 2012-04-12 | Remove or annotate FIXMEs in core::str | Tim Chevalier | -16/+12 |
| 2012-04-09 | core: Make str::as_bytes handle failure. Closes #2156 | Brian Anderson | -4/+10 |
| 2012-04-05 | Merge pull request #2139 from Jonanin/add_str_len | Brian Anderson | -0/+3 |
| 2012-04-06 | Add len to str extensions | Jon Morton | -0/+3 |
| 2012-04-05 | simplify typing rule for vector addition: use mutability of LHS | Niko Matsakis | -1/+1 |
| 2012-03-29 | core: Add each, each_char to str::extensions | Brian Anderson | -0/+6 |
| 2012-03-29 | core: Add str::each_char | Brian Anderson | -0/+26 |
| 2012-03-29 | core: Add extension methods for str | Brian Anderson | -1/+84 |
| 2012-03-29 | core: Don't use upcall_vec_grow from str::push_char | Brian Anderson | -62/+63 |
| 2012-03-29 | Rewrite str::push_char in rust. | Grahame Bowland | -28/+67 |
| 2012-03-29 | core: Don't call into the runtime to reserve if we have capacity | Brian Anderson | -1/+3 |
| 2012-03-29 | core: Add str::capacity | Brian Anderson | -0/+13 |
| 2012-03-29 | core: Add str::reserve_at_least | Brian Anderson | -0/+25 |
| 2012-03-29 | core: Improve docs for str::reserve | Brian Anderson | -3/+18 |
| 2012-03-27 | Move some code over to iterator-for to see how it performs. | Marijn Haverbeke | -8/+20 |
| 2012-03-23 | Remove char::to_lower, char::to_upper, use libc versions instead | Tim Chevalier | -11/+14 |
| 2012-03-22 | make --enforce-mut-vars always on, add mut annotations to remaining files | Niko Matsakis | -21/+21 |
| 2012-03-20 | core: Rename unsafe::leak to unsafe::forget. Closes #2031 | Brian Anderson | -6/+6 |
| 2012-03-19 | core: Move unsafe conversions to str::unsafe | Brian Anderson | -41/+43 |
| 2012-03-19 | core: Make converting from a C string unsafe | Brian Anderson | -4/+4 |
| 2012-03-16 | rustc: Unify impl self types in the opposite order so variance is correct | Brian Anderson | -3/+3 |
| 2012-03-16 | core: Resolve and remove some FIXMEs | Brian Anderson | -2/+0 |
| 2012-03-16 | core: Remove str::init_elt | Brian Anderson | -11/+0 |
| 2012-03-16 | core: Add lots of string docs | Brian Anderson | -32/+247 |