| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-10-04 | Forbid deprecated modes again in core | Tim Chevalier | -1/+1 | |
| 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 | -14/+14 | |
| 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-09-28 | Demode dvec | Tim Chevalier | -1/+1 | |
| 2012-09-28 | demode vec | Niko Matsakis | -4/+4 | |
| 2012-09-26 | Demode vec::push (and convert to method) | Niko Matsakis | -4/+4 | |
| 2012-09-26 | libcore: De-export dvec, rand, run, and sys | Patrick Walton | -11/+5 | |
| 2012-09-25 | Demode dvec | Tim Chevalier | -9/+9 | |
| 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-21 | De-mode vec::map, vec::eachi, vec::rev_each, vec::rev_eachi | Niko Matsakis | -8/+22 | |
| 2012-09-19 | demode the each() method on vec and other iterables. | Niko Matsakis | -1/+1 | |
| 2012-09-19 | core: Clean up crate docs and give all mods a brief description | Brian Anderson | -7/+11 | |
| 2012-09-18 | core: Rename 'unsafe' mod to 'cast' | Brian Anderson | -6/+6 | |
| 2012-09-18 | Replace uses of 'unchecked' with 'unsafe' | Brian Anderson | -2/+2 | |
| 2012-09-12 | fixup mutability of vec::each, make iter_bytes pure | Niko Matsakis | -16/+30 | |
| also, change DVec() to work with imm vectors rather than mut ones | ||||
| 2012-09-11 | Make moves explicit in arguments | Tim Chevalier | -9/+9 | |
| 2012-09-10 | Make more moves explicit in libcore | Tim Chevalier | -16/+16 | |
| 2012-09-07 | Convert all kind bounds to camel case. Remove send, owned keywords. | Brian Anderson | -2/+2 | |
| 2012-09-07 | Add an ignore! macro, remove support for nested block comments, re: #2755. | Graydon Hoare | -1/+1 | |
| 2012-09-04 | libcore: "import" -> "use" | Patrick Walton | -2/+2 | |
| 2012-09-02 | Camel case core::ops | Brian Anderson | -1/+1 | |
| 2012-09-01 | Demode reinterpret_cast | Brian Anderson | -5/+5 | |
| 2012-08-27 | Camel case various core constructors | Brian Anderson | -2/+1 | |
| 2012-08-26 | Camel case the option type | Brian Anderson | -2/+2 | |
| 2012-08-20 | new region inference, seperate infer into modules, improve error msgs | Niko Matsakis | -8/+27 | |
| Fixes #2806 Fixes #3197 Fixes #3138 | ||||
| 2012-08-15 | Convert more core types to camel case | Brian Anderson | -15/+16 | |
| 2012-08-13 | Stop parsing old operator overloading syntax | Brian Anderson | -6/+0 | |
| 2012-08-13 | De-mode-ify a few minor libcore modules. | Graydon Hoare | -1/+5 | |
| 2012-08-08 | Convert impls to new syntax | Brian Anderson | -6/+5 | |
| 2012-08-06 | Convert alt to match. Stop parsing alt | Brian Anderson | -1/+1 | |
| 2012-08-01 | Convert ret to return | Brian Anderson | -4/+4 | |
| 2012-07-31 | Introduce 'return', 'match' and 'module' as synonyms | Brian Anderson | -6/+6 | |
| 2012-07-28 | core: More magic to make core build with --test | Brian Anderson | -1/+1 | |
| 2012-07-27 | core: Trait-ify various overloaded operators | Patrick Walton | -0/+7 | |
| 2012-07-26 | Add #[inline(never)], and also fixed inlining on vec::push | Eric Holk | -0/+5 | |
| 2012-07-17 | dvec/vec interface cleanup: fixing reach, reverse, adding more pure | Ben Blum | -22/+32 | |
| 2012-07-14 | Move the world over to using the new style string literals and types. Closes ↵ | Michael Sullivan | -6/+6 | |
| #2907. | ||||
| 2012-07-12 | Get rid of all of the remaining /~s in the code base. | Michael Sullivan | -1/+1 | |
| 2012-07-11 | core: Newtype a bunch of types in libcore | Patrick Walton | -5/+9 | |
| 2012-07-06 | Rename dvec::from_elt to dvec::from_elem. Closes #2792. | Michael Sullivan | -2/+2 | |
| 2012-07-04 | convert doc-attributes to doc-comments using ↵ | Gareth Daniel Smith | -77/+73 | |
| ./src/etc/sugarise-doc-comments.py (and manually tweaking) - for issue #2498 | ||||
| 2012-07-03 | Export dvec::from_elt. | Erick Tryzelaar | -0/+1 | |
| 2012-07-02 | rustc: Implement a new resolve pass behind a compile flag | Patrick Walton | -1/+24 | |
| 2012-07-01 | Convert to new closure syntax | Brian Anderson | -9/+9 | |
| 2012-06-30 | Eliminate usages of old sugared call syntax | Brian Anderson | -8/+8 | |
| 2012-06-29 | Switch the compiler over to using ~[] notation instead of []/~. Closes #2759. | Michael Sullivan | -13/+13 | |
| 2012-06-27 | Removed pretty much all the vector+ from core (issue #2719) | Eric Holk | -1/+2 | |
| 2012-06-26 | More perf tweaks (issue #2719) | Eric Holk | -1/+0 | |
| 2012-06-26 | Getting rid of lots more vector +=. (issue #2719) | Eric Holk | -1/+1 | |
| 2012-06-25 | Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725. | Michael Sullivan | -15/+14 | |
| 2012-06-21 | Basic functionality for new ports and chans | Eric Holk | -18/+32 | |
| The first benchmark shows about twice the throughput of the old system. | ||||
