| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-12-16 | Add priority_queue test for unique pointers | Brian Anderson | -0/+22 | |
| 2012-12-16 | Add various workaround attributes to priority_queue | Brian Anderson | -0/+13 | |
| 2012-12-16 | priority_queue: add docstring for from_vec | Daniel Micay | -0/+1 | |
| 2012-12-16 | priority_queue: replace copies with moves | Daniel Micay | -10/+24 | |
| 2012-12-16 | priority_queue: clean up naming | Daniel Micay | -25/+23 | |
| 2012-12-16 | priority_queue: fix test compilation | Daniel Micay | -1/+1 | |
| 2012-12-16 | priority_queue: fix siftup/siftdown naming | Daniel Micay | -11/+11 | |
| 2012-12-16 | priority_queue: avoid copy with top and maybe_top | Daniel Micay | -11/+12 | |
| 2012-12-16 | priority_queue: fix to_sorted_vec off-by-one error | Daniel Micay | -13/+23 | |
| 2012-12-16 | priority_queue: replace some copies with swaps | Daniel Micay | -10/+6 | |
| 2012-12-16 | priority_queue: make from_vec a static method | Daniel Micay | -10/+11 | |
| 2012-12-16 | priority_queue: make to_vec/to_sorted_vec methods | Daniel Micay | -20/+17 | |
| 2012-12-16 | add priority queue implementation (binary heap) | Daniel Micay | -0/+254 | |
| 2012-12-14 | Rename core::comm to core::oldcomm | Brian Anderson | -209/+202 | |
| 2012-12-13 | Begin renaming serialization to std::serialize. (snapshot) | Erick Tryzelaar | -1/+588 | |
| 2012-12-13 | Long lines | Brian Anderson | -1/+2 | |
| 2012-12-13 | Change some uses of static methods to use the trait path | Brian Anderson | -3/+2 | |
| 2012-12-13 | Replace some Eq impls with deriving_eq | Brian Anderson | -151/+13 | |
| 2012-12-13 | std: Convert records to structs in getopts | Brian Anderson | -33/+42 | |
| 2012-12-13 | Rename Send trait to Owned | Brian Anderson | -52/+53 | |
| 2012-12-13 | Rename Owned trait to Durable | Brian Anderson | -1/+1 | |
| 2012-12-13 | librustc: Make `use` statements crate-relative by default. r=brson | Patrick Walton | -6/+5 | |
| 2012-12-11 | Reverse the order of the results of pipes::stream | Tim Chevalier | -27/+27 | |
| As per #3637. | ||||
| 2012-12-11 | libstd: Implement read_managed_str for the JSON deserialiser. | Huon Wilson | -2/+5 | |
| The FIXME is an underlying issue (a core::at_str library) that this doesn't address. | ||||
| 2012-12-11 | libstd: refactor future, remove with(), remove ~ indirection. | Graydon Hoare | -90/+32 | |
| Conflicts: src/libstd/future.rs | ||||
| 2012-12-11 | libstd: teach workcache to check freshness. | Graydon Hoare | -18/+59 | |
| 2012-12-10 | Add license boilerplate to more files. | Graydon Hoare | -0/+20 | |
| 2012-12-10 | Minor cleanups to pipes and serialization | Brian Anderson | -9/+13 | |
| 2012-12-09 | Remove transitional code | Brian Anderson | -38/+0 | |
| 2012-12-07 | Make short flags with a single-char arg work in getopts | Tim Chevalier | -34/+37 | |
| This looks like a big patch, but it's mostly just modernization. The real change is in the fn called `getopts`, the line if arg_follows && j < curlen { Minor bugfix, no review. Closes #2822 | ||||
| 2012-12-07 | librustc: De-mode pattern bindings. r=nmatsakis | Patrick Walton | -5/+5 | |
| 2012-12-06 | make bblum happy | Tim Chevalier | -17/+6 | |
| 2012-12-06 | Rename std::ebml::Reader => std::ebml::reader, same for writer | Tim Chevalier | -5/+5 | |
| Closes #4076 | ||||
| 2012-12-04 | librustc: Implement moves based on type. r=nmatsakis | Patrick Walton | -3/+3 | |
| 2012-12-04 | librustc: Implement explicit self for Add and Index; add a hack in the ↵ | Patrick Walton | -0/+38 | |
| borrow checker to support this. r=nmatsakis | ||||
| 2012-12-03 | Update license, add license boilerplate to most files. Remainder will follow. | Graydon Hoare | -0/+430 | |
| 2012-11-30 | libs: Remove transitionary material on iter_bytes, add workcache to build. | Graydon Hoare | -23/+1 | |
| 2012-11-29 | impls of traits cannot define methods on the anonymous trait | Brian Anderson | -5/+3 | |
| 2012-11-29 | librustc: Eliminate most expressions of the form `a.b()` that are not method ↵ | Patrick Walton | -1/+1 | |
| calls. rs=refactoring | ||||
| 2012-11-29 | librustc: Make the Drop trait use explicit self | Patrick Walton | -22/+22 | |
| 2012-11-28 | core: Convert some records to structs | Brian Anderson | -19/+23 | |
| 2012-11-28 | Merge remote-tracking branch 'erickt/time' | Brian Anderson | -110/+162 | |
| Conflicts: src/libstd/time.rs | ||||
| 2012-11-28 | Merge remote-tracking branch 'brson/companion' into incoming | Brian Anderson | -512/+3 | |
| Conflicts: src/compiletest/compiletest.rs src/libcargo/cargo.rs src/libcore/core.rs src/librustc/rustc.rs src/librustdoc/rustdoc.rc | ||||
| 2012-11-28 | Register snapshots | Brian Anderson | -512/+3 | |
| 2012-11-28 | librustc: Add explicit self to IterBytes. r=nmatsakis | Patrick Walton | -1/+23 | |
| 2012-11-28 | Merge pull request #4032 from catamorphism/getopts | Graydon Hoare | -39/+39 | |
| [libstd] getopts, now with fewer copies | ||||
| 2012-11-27 | core: Add Clone trait | Brian Anderson | -24/+45 | |
| 2012-11-26 | libstd: turn time::Tm and time::Timespec into structs | Erick Tryzelaar | -194/+176 | |
| This avoids #4044 by not using the enum wrapper, and turning Tm_ directly into a struct. Along the way it modernizes the codebase to eliminate no-implicit-copies warnings. | ||||
| 2012-11-26 | Made Tm_ a struct instead of a record and added serialization support to Tm ↵ | Jesse Jones | -17/+78 | |
| and Tm_. Not entirely clear what the best way to do this is. Right now we persist the entire struct which seems to be both portable and exactly round-trippable. | ||||
| 2012-11-25 | Rename insert_with functions to update, update_with_key | Brian Anderson | -25/+25 | |
