| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2013-05-13 | Remove re-exports from libcore/core.rc | Alex Crichton | -0/+1 | |
| Also fix up all the fallout elsewhere throughout core. It's really nice being able to have the prelude. | ||||
| 2013-05-10 | test: Use the new `for` protocol | Alex Crichton | -3/+28 | |
| 2013-05-10 | core: Use the new `for` protocol | Alex Crichton | -20/+28 | |
| 2013-05-08 | rename iter::iter_to_vec to iter::to_vec | Daniel Micay | -6/+5 | |
| it's silly to duplicate the namespace in the fn name | ||||
| 2013-04-30 | iter: add max and min functions | Daniel Micay | -2/+66 | |
| 2013-04-30 | iter: add a find function | Daniel Micay | -0/+29 | |
| 2013-04-28 | make way for a new iter module | Daniel Micay | -323/+78 | |
| 2013-04-19 | test: Rewrite nbody and spectralnorm shootout benchmarks | Patrick Walton | -0/+4 | |
| 2013-04-13 | Avoid excessive allocations and copies in iter::to_vec | Björn Steinbrink | -1/+1 | |
| The foldl based implementation allocates lots of unneeded vectors. iter::map_to_vec is already optimized to avoid these. | ||||
| 2013-04-10 | Added iter_to_vec conversion fn | Marvin Löbel | -0/+26 | |
| 2013-03-26 | librustc: Modify all code to use new lifetime binder syntax | Patrick Walton | -1/+1 | |
| 2013-03-26 | Fixes mozilla/rust#3612. | Felix S. Klock II | -1/+2 | |
| 2013-03-22 | libcore: Remove `pure` from libcore. rs=depure | Patrick Walton | -63/+50 | |
| 2013-03-22 | librustc: Remove all uses of `static` from functions. rs=destatic | Patrick Walton | -2/+2 | |
| 2013-03-18 | librustc: Convert all uses of old lifetime notation to new lifetime ↵ | Patrick Walton | -1/+1 | |
| notation. rs=delifetiming | ||||
| 2013-03-13 | add a trait for mutable iterators | Daniel Micay | -0/+4 | |
| 2013-03-11 | librustc: Replace all uses of `fn()` with `&fn()`. rs=defun | Patrick Walton | -26/+26 | |
| 2013-03-06 | Add manual &self/ and &static/ and /&self declarations that | Niko Matsakis | -1/+1 | |
| are currently inferred. New rules are coming that will require them to be explicit. All add some explicit self declarations. | ||||
| 2013-02-26 | Add current year in the copyright header | Olivier Saut | -1/+1 | |
| 2013-02-26 | Various typos corrected | Olivier Saut | -8/+8 | |
| 2013-02-20 | librustc: Separate most trait bounds with '+'. rs=plussing | Patrick Walton | -7/+7 | |
| 2013-02-15 | libcore: Get rid of `move`. | Luqman Aden | -6/+6 | |
| 2013-02-13 | Remove die!, raplace invocations with fail! Issue #4524 pt 3 | Nick Desaulniers | -2/+2 | |
| 2013-02-07 | add a ReverseIter trait | Daniel Micay | -0/+4 | |
| 2013-02-07 | Make ~fn non-copyable, make &fn copyable, split barefn/closure types, | Niko Matsakis | -3/+0 | |
| correct handling of moves for struct-record update. Part of #3678. Fixes #2828, #3904, #4719. | ||||
| 2013-01-31 | Replace most invocations of fail keyword with die! macro | Nick Desaulniers | -2/+2 | |
| 2013-01-30 | librustc: Change `self` as a type to `Self` everywhere. r=brson | Patrick Walton | -1/+1 | |
| 2013-01-14 | spelling fixes for iter module docstrings | Daniel Micay | -3/+3 | |
| 2013-01-14 | Inlining methods/functions in core. | gifnksm | -0/+18 | |
| Also inlining some functions which take functions as arguments. | ||||
| 2013-01-08 | librustc: Make unqualified identifier searches terminate at the nearest ↵ | Patrick Walton | -0/+2 | |
| module scope. r=tjc | ||||
| 2013-01-08 | Revert "librustc: Make unqualified identifier searches terminate at the ↵ | Patrick Walton | -2/+0 | |
| nearest module scope. r=tjc" This reverts commit a8d37af2473da79be704c9ce2374f278c47177b6. | ||||
| 2013-01-08 | librustc: Make unqualified identifier searches terminate at the nearest ↵ | Patrick Walton | -0/+2 | |
| module scope. r=tjc | ||||
| 2013-01-04 | Rename option::get_default => get_or_default, get_zero => get_or_zero | Tim Chevalier | -1/+1 | |
| 2012-12-27 | librustc: Terminate name searches at the nearest module scope for paths that ↵ | Patrick Walton | -0/+1 | |
| contain at least two components. r=graydon | ||||
| 2012-12-17 | Change iter::find's closure to take a ref | Erick Tryzelaar | -20/+20 | |
| 2012-12-17 | core: Add &self to core::iter methods | Erick Tryzelaar | -19/+20 | |
| 2012-12-13 | Change some uses of static methods to use the trait path | Brian Anderson | -4/+4 | |
| 2012-12-03 | Update license, add license boilerplate to most files. Remainder will follow. | Graydon Hoare | -0/+10 | |
| 2012-11-29 | impls of traits cannot define methods on the anonymous trait | Brian Anderson | -0/+1 | |
| 2012-11-02 | libcore: Implement a memory-safe "each_val" for data in aliasable, mutable ↵ | Patrick Walton | -0/+7 | |
| locations | ||||
| 2012-10-30 | Remove trait of TimesIx | Mahmut Bulut | -4/+0 | |
| 2012-10-23 | Remove uses of binary move - <- - from tests and libraries | Tim Chevalier | -1/+1 | |
| 2012-10-04 | Forbid deprecated modes again in core | Tim Chevalier | -0/+3 | |
| 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/+13 | |
| 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 | De-export iter and result. Part of #3583. | Graydon Hoare | -32/+42 | |
| 2012-09-28 | Add a demoded version of ptr::addr_of | Tim Chevalier | -9/+9 | |
| 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 | Finish demoding iter: from_elem, copy_seq, map, append | Tim Chevalier | -7/+7 | |
| 2012-09-28 | Squash a couple pattern warnings that I missed | Tim Chevalier | -3/+3 | |
| 2012-09-28 | Demode iter::foldl and friends | Tim Chevalier | -23/+18 | |
| 2012-09-28 | Demoding in iter: any, all, map_to_vec, flat_map_to_vec, filter_to_vec | Tim Chevalier | -13/+13 | |
