| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-10-11 | Write option::chain and result::chain with `match move` | Tim Chevalier | -5/+3 | |
| Closes #3590 | ||||
| 2012-10-04 | Forbid deprecated modes again in core | Tim Chevalier | -2/+1 | |
| Sadly, there's only one file that requires deprecated modes (stackwalk)... So, forbid them everywhere else. | ||||
| 2012-10-04 | De-mode comm::Chan | Tim Chevalier | -2/+2 | |
| 2012-10-04 | core: Improve option docs a little | Brian Anderson | -31/+105 | |
| 2012-10-02 | Removing explicit uses of + mode | Tim Chevalier | -17/+15 | |
| 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 | Attempt to fix option::test_unwrap_str breakage. | Graydon Hoare | -4/+4 | |
| 2012-10-01 | De-export option and option_iter. Part of #3583. | Graydon Hoare | -19/+21 | |
| 2012-09-28 | Add a demoded version of ptr::addr_of | Tim Chevalier | -4/+4 | |
| 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 | core: Demode patterns | Brian Anderson | -5/+5 | |
| 2012-09-27 | core: More option demoding | Brian Anderson | -18/+9 | |
| 2012-09-26 | core: Replace map/map_default with map_ref/map_default_ref | Brian Anderson | -23/+5 | |
| 2012-09-25 | Check more things with deprecated_modes | Brian Anderson | -1/+1 | |
| 2012-09-23 | Register snapshots. Remove redundant Eq impls, Makefile hacks | Brian Anderson | -22/+0 | |
| 2012-09-23 | core: Demode option | Brian Anderson | -27/+31 | |
| 2012-09-23 | Make it illegal to use modes in a fn signature with providing | Niko Matsakis | -3/+3 | |
| an explicit variable name. (Step one to changing the defaults) First step to #3535 | ||||
| 2012-09-20 | rustc: De-mode all overloaded operators | Patrick Walton | -0/+23 | |
| 2012-09-11 | Make moves explicit in arguments | Tim Chevalier | -3/+3 | |
| 2012-09-10 | Make moves explicit in task; also make option::unwrap take its argument by move | Tim Chevalier | -4/+6 | |
| 2012-09-10 | Make more moves explicit in libcore | Tim Chevalier | -10/+10 | |
| 2012-09-07 | Convert all kind bounds to camel case. Remove send, owned keywords. | Brian Anderson | -4/+4 | |
| 2012-09-07 | Remove 'let' syntax for struct fields | Brian Anderson | -1/+1 | |
| 2012-09-07 | rustc: Add an "ne" method to the Eq trait, and implement it everywhere | Patrick Walton | -0/+1 | |
| 2012-09-04 | core: Remove struct ctors | Brian Anderson | -1/+7 | |
| 2012-09-02 | core: warn(non_camel_case_types) everywhere, with few exceptions | Brian Anderson | -2/+2 | |
| 2012-08-27 | rustc: Implement equality for option types | Patrick Walton | -0/+21 | |
| 2012-08-26 | Camel case the option type | Brian Anderson | -63/+63 | |
| 2012-08-25 | Implement option::unwrap safely...! | Ben Blum | -16/+11 | |
| 2012-08-21 | more sound treatment of fn& regions; change all & to be distinct | Niko Matsakis | -1/+1 | |
| 2012-08-20 | core: adding option::or, a function to return the leftmost of two some() ↵ | Daniel Patterson | -0/+10 | |
| values or none if both are none | ||||
| 2012-08-17 | Remove the class keyword | Brian Anderson | -1/+1 | |
| 2012-08-16 | Add option::get_ref | Ben Blum | -0/+16 | |
| 2012-08-14 | De-mode task.rs and add some option::foo_ref() helpers | Ben Blum | -3/+51 | |
| 2012-08-13 | core: Camel case some lesser-used modules | Brian Anderson | -1/+1 | |
| 2012-08-08 | Convert impls to new syntax | Brian Anderson | -2/+2 | |
| 2012-08-06 | Convert alt to match. Stop parsing alt | Brian Anderson | -9/+9 | |
| 2012-08-05 | Switch alts to use arrows | Brian Anderson | -10/+13 | |
| 2012-08-03 | Be more defensive in pipes (#3098) | Eric Holk | -2/+2 | |
| 2012-08-02 | option::swap_unwrap, the ubiquitous 'option dance'. | Ben Blum | -2/+27 | |
| 2012-08-01 | Convert ret to return | Brian Anderson | -2/+2 | |
| 2012-07-31 | make option::map_default<T,U> instead of U:copy | Ben Blum | -2/+2 | |
| 2012-07-24 | Add option::unwrap_expect | Ben Blum | -0/+6 | |
| 2012-07-24 | Update some str functions to slices, merge as_buf and unpack_slice. | Graydon Hoare | -2/+2 | |
| 2012-07-17 | option: remove map's copy restriction and add map_consume | Ben Blum | -2/+10 | |
| 2012-07-17 | rustc: Implement and enforce instance coherence | Patrick Walton | -0/+1 | |
| 2012-07-17 | Add option::while_some; also add more pure (close #2927) | Ben Blum | -8/+34 | |
| 2012-07-14 | Move the world over to using the new style string literals and types. Closes ↵ | Michael Sullivan | -5/+5 | |
| #2907. | ||||
| 2012-07-04 | convert doc-attributes to doc-comments using ↵ | Gareth Daniel Smith | -64/+66 | |
| ./src/etc/sugarise-doc-comments.py (and manually tweaking) - for issue #2498 | ||||
| 2012-07-03 | oops, fix option.expect() and use it in libstd/map.rs | Ben Blum | -1/+1 | |
| 2012-07-03 | add option::expect and mark option methods as pure | Ben Blum | -8/+27 | |
| 2012-07-01 | Convert to new closure syntax | Brian Anderson | -2/+2 | |
