| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-12-18 | Fix vec::flat_map_to_vec method | Erick Tryzelaar | -0/+126 | |
| 2012-12-17 | Change iter::find's closure to take a ref | Erick Tryzelaar | -11/+9 | |
| 2012-12-17 | core: Add &self to core::iter methods | Erick Tryzelaar | -24/+29 | |
| 2012-12-14 | Remove more uses of 'move' from core::vec | Brian Anderson | -9/+24 | |
| 2012-12-14 | Rewrite core::vec::shift to not allocate | Brian Anderson | -19/+42 | |
| 2012-12-12 | core: Remove some uses of 'move' | Brian Anderson | -76/+76 | |
| 2012-12-09 | Remove transitional code | Brian Anderson | -18/+0 | |
| 2012-12-04 | librustc: Implement explicit self for Add and Index; add a hack in the ↵ | Patrick Walton | -10/+29 | |
| borrow checker to support this. r=nmatsakis | ||||
| 2012-12-03 | core: rename box to managed. Close #4079. | Graydon Hoare | -1/+1 | |
| 2012-12-03 | Update license, add license boilerplate to most files. Remainder will follow. | Graydon Hoare | -0/+10 | |
| 2012-11-30 | core: Make core.rc more readable. Cleanup | Brian Anderson | -14/+16 | |
| 2012-11-28 | Register snapshots | Brian Anderson | -72/+0 | |
| 2012-11-26 | Ignore two failure tests on windows | Brian Anderson | -0/+2 | |
| 2012-11-26 | Add insert and remove methods to vecs - as proposed in issue #4028. | Gareth Daniel Smith | -0/+86 | |
| 2012-11-20 | Remove parentheses from closure argument types | Erick Tryzelaar | -1/+1 | |
| 2012-11-19 | rustc: Implement explicit self for Eq and Ord. r=graydon | Patrick Walton | -0/+72 | |
| 2012-11-03 | Remove stage0 stuff that was awaiting snapshot | Tim Chevalier | -44/+0 | |
| and re-register snapshots Just removing unneeded code, no review | ||||
| 2012-11-02 | libcore: Implement a memory-safe "each_val" for data in aliasable, mutable ↵ | Patrick Walton | -0/+31 | |
| locations | ||||
| 2012-10-24 | Implement proper subtyping for region fn types (part of #2263) | Niko Matsakis | -7/+81 | |
| 2012-10-23 | Remove uses of binary move - <- - from tests and libraries | Tim Chevalier | -11/+11 | |
| 2012-10-12 | Make moves explicit in core tests | Tim Chevalier | -16/+16 | |
| 2012-10-11 | Export VecUnboxedRepr from vec so a test case can use it | Tim Chevalier | -7/+7 | |
| 2012-10-11 | Fix from_buf in test cases | Tim Chevalier | -2/+2 | |
| 2012-10-11 | Remove comment that is now false | Tim Chevalier | -18/+32 | |
| 2012-10-05 | Finally removing all uses of by-mut-ref | Tim Chevalier | -46/+0 | |
| The code for the mode itself is still there. | ||||
| 2012-10-05 | Demode some code using by-mutbl-ref; warn about by-mutbl-ref | Tim Chevalier | -1/+48 | |
| The parser now warns about use of mutbl-ref mode, though it's kind of a lie since this commit doesn't remove support for the mode. Changed move_val_init to have stage0 and stage1/2 versions, the latter of which is demoded. Changed the type that the typechecker expects the move_val_init intrinsic to have. After this is pushed, I can make a new snapshot, which will remove the need for the stage0 versions. | ||||
| 2012-10-04 | Fix FIXME that's no longer blocked by #2611 | Tim Chevalier | -4/+3 | |
| 2012-10-04 | Forbid deprecated modes again in core | Tim Chevalier | -2/+2 | |
| Sadly, there's only one file that requires deprecated modes (stackwalk)... So, forbid them everywhere else. | ||||
| 2012-10-02 | Removing explicit uses of + mode | Tim Chevalier | -48/+48 | |
| This removes most explicit uses of the + argument mode. Pending a snapshot, I had to remove the forbid(deprecated_modes) pragma from a bunch of files. I'll put it back! + mode still has to be used in a few places for functions that get moved (see task.rs) The changes outside core and std are due to the to_bytes trait and making the compiler (with legacy modes on) agree with the libraries (with legacy modes off) about modes. | ||||
| 2012-10-01 | rename vec::raw::form_slice to buf_as_slice | Erick Tryzelaar | -2/+3 | |
| This matches the str::raw function. | ||||
| 2012-10-01 | De-export vec. Part of #3583. | Graydon Hoare | -238/+139 | |
| 2012-10-01 | Move over to calling ptr::addr_of | Tim Chevalier | -1/+1 | |
| Everything should now call ptr::addr_of instead of ptr::p2::addr_of. Only the pipes macro code when compiled by stage0 will call ptr::p2::addr_of. Needs a snapshot to get rid of that. | ||||
| 2012-09-28 | Add a demoded version of ptr::addr_of | Tim Chevalier | -13/+13 | |
| Currently, the new version is ptr::p2::addr_of and the old one is ptr::addr_of. This is kind of cheesy, but I need a snapshot before I can ditch the old version, since the pipe compiler generates calls to addr_of. core is converted over to use the new version, std is not. | ||||
| 2012-09-28 | Demode iter::foldl and friends | Tim Chevalier | -6/+6 | |
| 2012-09-28 | core: Demode the vec::foldr method | Brian Anderson | -2/+2 | |
| 2012-09-28 | Demoding in iter: any, all, map_to_vec, flat_map_to_vec, filter_to_vec | Tim Chevalier | -6/+6 | |
| 2012-09-28 | core: Demode patterns | Brian Anderson | -2/+3 | |
| 2012-09-28 | rename iter2 to each2, make it follow iterator protocol | Niko Matsakis | -3/+5 | |
| 2012-09-28 | demode vec | Niko Matsakis | -229/+301 | |
| 2012-09-27 | core: Add failure tests for higher-order vec functions | Brian Anderson | -0/+539 | |
| 2012-09-26 | change vec::view sig to be sound (good catch @bblum) | Niko Matsakis | -5/+6 | |
| 2012-09-26 | Merge pull request #3526 from Dretch/viewmethod | Brian Anderson | -4/+6 | |
| Make vec::view a method too. | ||||
| 2012-09-26 | core: Replace map/map_default with map_ref/map_default_ref | Brian Anderson | -2/+2 | |
| 2012-09-26 | Demode vec::push (and convert to method) | Niko Matsakis | -76/+113 | |
| 2012-09-25 | Demode iter-trait | Tim Chevalier | -3/+3 | |
| 2012-09-25 | use + mode for (almost) everything when not using legacy modes | Niko Matsakis | -1/+1 | |
| 2012-09-23 | Register snapshots. Remove redundant Eq impls, Makefile hacks | Brian Anderson | -86/+0 | |
| 2012-09-23 | core: Demode option | Brian Anderson | -2/+2 | |
| 2012-09-23 | Make it illegal to use modes in a fn signature with providing | Niko Matsakis | -7/+8 | |
| an explicit variable name. (Step one to changing the defaults) First step to #3535 | ||||
| 2012-09-21 | De-mode vec::map, vec::eachi, vec::rev_each, vec::rev_eachi | Niko Matsakis | -117/+93 | |
