| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-08-29 | Camel case more std types | Brian Anderson | -39/+53 | |
| 2012-08-29 | std: Camel case some constructors | Brian Anderson | -57/+56 | |
| 2012-08-29 | Refactor representation of borrowing so that it is tracked by fn_ctxt and ↵ | Niko Matsakis | -0/+1 | |
| not infer | ||||
| 2012-08-28 | CamelCasify lots of std | Ben Striegel | -602/+622 | |
| 2012-08-28 | Convert core::pipes to camel case | Brian Anderson | -11/+11 | |
| 2012-08-28 | De-abstract std::sort:qsort3, which uses only the trait-based lt/eq. | Jed Davis | -9/+8 | |
| quick_sort3 was converted from fn parameters to traits in d9cdddeb, but was still passing around closures over core::cmp::{eq,lt} internally, and LLVM doesn't and/or can't pick up that they're effectively constant. Reduces time spent to sort a large random ~[uint] by 16% in my testing. | ||||
| 2012-08-27 | preliminary work on making future's sendable | Niko Matsakis | -3/+3 | |
| also various improvements to the ptr casting fns: - rename assimilate() to to_unsafe_ptr() (fixes #3110) - introduce `unsafe::copy_lifetime()` to copy the lifetime from one ptr to another | ||||
| 2012-08-27 | Camel case various core constructors | Brian Anderson | -84/+84 | |
| 2012-08-27 | Remove deprecated modes from libstd/getopts.rs | Kevin Cantu | -43/+50 | |
| 2012-08-27 | Turn off the verbose-mode of ebml. | Graydon Hoare | -1/+1 | |
| 2012-08-27 | Convert core::result to camel case | Brian Anderson | -342/+342 | |
| 2012-08-27 | remove ipv4 match which looks like it was... purposeless | Niko Matsakis | -58/+54 | |
| 2012-08-27 | Fix region-related unsafety in arc::get's signature | Ben Blum | -1/+1 | |
| 2012-08-26 | convert std::arc types to camelcase | Ben Blum | -77/+79 | |
| 2012-08-26 | minor core/std cleanup | Ben Blum | -2/+2 | |
| 2012-08-26 | convert std::sync types to camelcase | Ben Blum | -135/+137 | |
| 2012-08-26 | Camel case the option type | Brian Anderson | -367/+367 | |
| 2012-08-25 | Merge pull request #3282 from killerswan/modes5 | Brian Anderson | -38/+50 | |
| Removing more deprecated modes | ||||
| 2012-08-25 | libstd: Don't make task-local GC data when creating TCP streams. | Patrick Walton | -10/+13 | |
| This exposed an ICE in a test; it's commented out for now. | ||||
| 2012-08-25 | Remove deprecated modes from SHA1 and MD4 in libstd | Kevin Cantu | -37/+46 | |
| 2012-08-25 | Remove deprecated modes from libstd/timer.rs | Kevin Cantu | -1/+4 | |
| 2012-08-25 | libstd: Suppress warning about unused variable in net_tcp. | Erick Tryzelaar | -1/+1 | |
| 2012-08-25 | libstd: serialization should use &strs. | Erick Tryzelaar | -11/+11 | |
| 2012-08-25 | Use region variance to remove a bunch of unsafety in sync/arc (#2282) | Ben Blum | -54/+15 | |
| 2012-08-24 | Merge pull request #3269 from killerswan/modes3 | Graydon Hoare | -17/+20 | |
| Remove deprecated modes from libstd/time.rs | ||||
| 2012-08-24 | Start using core::path2::Path in a lot of places. | Graydon Hoare | -8/+9 | |
| 2012-08-24 | fix some unused pattern binding warnings | Niko Matsakis | -1/+1 | |
| 2012-08-24 | Add a bunch more unsafe blocks to prepare for the new semantics of ↵ | Michael Sullivan | -25/+27 | |
| unsafe/closure interactions. | ||||
| 2012-08-24 | Remove deprecated modes from libstd/time.rs | Kevin Cantu | -17/+20 | |
| I've changed the unique string arguments to slices, and internally use references to tm enums. These changes are self-contained and so likely don't step on any of @graydon's feet for a change! | ||||
| 2012-08-23 | More complete fix to #3162 (borrowck bug related to access to rec fields) | Niko Matsakis | -1/+2 | |
| 2012-08-23 | Rename str::bytes to str::to_bytes | Tim Chevalier | -19/+19 | |
| Closes #3245 | ||||
| 2012-08-23 | `m1!{...}` -> `m1!(...)` | Paul Stansifer | -367/+367 | |
| 2012-08-22 | libstd: fix serialization no-implicit-copies warnings | Erick Tryzelaar | -29/+29 | |
| 2012-08-22 | libstd: switch ebml's wr_tagged_str to use str::byte_slice | Erick Tryzelaar | -7/+1 | |
| 2012-08-22 | export unwrap_arc functions in core/std | Ben Blum | -1/+2 | |
| 2012-08-22 | Merge pull request #3240 from Dretch/bitvfixes | Brian Anderson | -46/+125 | |
| Bitvfixes | ||||
| 2012-08-22 | #[ignore(cfg(windows))] for a test I added to arena that involves failure. | Michael Sullivan | -2/+1 | |
| 2012-08-21 | Remove a level of indirection from std::arena. | Michael Sullivan | -20/+20 | |
| 2012-08-21 | Have std::arena segregate POD data and non-POD data into different chunks. | Michael Sullivan | -22/+77 | |
| 2012-08-21 | Make std::arena run destructors. Closes #2831. | Michael Sullivan | -22/+162 | |
| 2012-08-21 | Fix some map related build failures. | Michael Sullivan | -4/+1 | |
| 2012-08-21 | implement a map testing benchmark | Niko Matsakis | -10/+100 | |
| This involved some other changes: - add a managed<T> wrapper that makes send_map usable from @-data - implement map<K,V> for managed<send_map> Unit tests are coming. | ||||
| 2012-08-21 | Remove fixmes about exporting. Close #2648, close #3119. | Ben Blum | -1/+0 | |
| 2012-08-21 | fix a bug in bitv where the undefined bits in small/big bitv values could ↵ | Gareth Daniel Smith | -45/+116 | |
| cause operations to return incorrect results. | ||||
| 2012-08-21 | fix a logic bug in small_bitv.set | Gareth Daniel Smith | -1/+9 | |
| 2012-08-21 | more sound treatment of fn& regions; change all & to be distinct | Niko Matsakis | -2/+2 | |
| 2012-08-20 | new region inference, seperate infer into modules, improve error msgs | Niko Matsakis | -4/+5 | |
| Fixes #2806 Fixes #3197 Fixes #3138 | ||||
| 2012-08-20 | Document arc::unwrap. Close #3123. | Ben Blum | -0/+22 | |
| 2012-08-20 | oops, remove #[cfg(stage1)]s from arc::unwrap functions+tests | Ben Blum | -4/+0 | |
| 2012-08-20 | Add unwrap for std::arc ARC variants | Ben Blum | -2/+48 | |
