summary refs log tree commit diff
path: root/src/libcore/iter-trait.rs
AgeCommit message (Collapse)AuthorLines
2013-03-08implement BaseIter for dlist (removing iter-trait)Daniel Micay-89/+0
Closes #2827
2013-02-20librustc: Separate most trait bounds with '+'. rs=plussingPatrick Walton-3/+3
2013-02-15libcore: Get rid of `move`.Luqman Aden-1/+1
2013-02-14librustc: Replace `impl Type : Trait` with `impl Trait for Type`. ↵Patrick Walton-5/+5
rs=implflipping
2013-02-07Make ~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-14Inlining methods/functions in core.gifnksm-0/+16
Also inlining some functions which take functions as arguments.
2013-01-08librustc: Make unqualified identifier searches terminate at the nearest ↵Patrick Walton-0/+3
module scope. r=tjc
2013-01-08Revert "librustc: Make unqualified identifier searches terminate at the ↵Patrick Walton-3/+0
nearest module scope. r=tjc" This reverts commit a8d37af2473da79be704c9ce2374f278c47177b6.
2013-01-08librustc: Make unqualified identifier searches terminate at the nearest ↵Patrick Walton-0/+3
module scope. r=tjc
2012-12-27librustc: Terminate name searches at the nearest module scope for paths that ↵Patrick Walton-0/+1
contain at least two components. r=graydon
2012-12-17Change iter::find's closure to take a refErick Tryzelaar-10/+10
2012-12-17core: Add &self to core::iter methodsErick Tryzelaar-22/+29
2012-12-17Register snapshotsBrian Anderson-4/+0
2012-12-17Revert "Register snapshots"Brian Anderson-0/+4
This reverts commit d6d12d90ff5363f59f1a1bf67f999a5d7944abb1.
2012-12-17Register snapshotsBrian Anderson-4/+0
2012-12-13librustc: Make `use` statements crate-relative by default. r=brsonPatrick Walton-0/+5
2012-12-03Update license, add license boilerplate to most files. Remainder will follow.Graydon Hoare-0/+10
2012-10-04Forbid deprecated modes again in coreTim Chevalier-1/+2
Sadly, there's only one file that requires deprecated modes (stackwalk)... So, forbid them everywhere else.
2012-10-02Removing explicit uses of + modeTim Chevalier-5/+5
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-28Add a demoded version of ptr::addr_ofTim 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-28Demode iter::foldl and friendsTim Chevalier-6/+6
2012-09-28Demoding in iter: any, all, map_to_vec, flat_map_to_vec, filter_to_vecTim Chevalier-10/+10
2012-09-26libcore: De-export cleanup, cmath, future, gc, hash, iter-trait, mutable, ↵Patrick Walton-1/+0
and private
2012-09-25Demode iter-traitTim Chevalier-5/+7
2012-09-21De-mode vec::map, vec::eachi, vec::rev_each, vec::rev_eachiNiko Matsakis-2/+2
2012-09-19demode the each() method on vec and other iterables.Niko Matsakis-1/+1
2012-09-13make iter::position() not require EqNiko Matsakis-3/+3
2012-09-10Make more moves explicit in libcoreTim Chevalier-1/+1
2012-09-07Convert all kind bounds to camel case. Remove send, owned keywords.Brian Anderson-2/+2
2012-09-04libcore: "import" -> "use"Patrick Walton-2/+2
2012-08-29rustc: Make `<` and `=` into traitsPatrick Walton-1/+9
2012-08-26Camel case the option typeBrian Anderson-3/+3
2012-08-23Make a bunch more of the iteration functions/methods marked pure. Closes #3253.Michael Sullivan-21/+17
2012-08-15Convert more core types to camel caseBrian Anderson-3/+3
2012-08-08Convert impls to new syntaxBrian Anderson-3/+3
2012-08-01Convert ret to returnBrian Anderson-2/+2
2012-07-17rustc: Implement and enforce instance coherencePatrick Walton-0/+3
2012-07-11core: Newtype a bunch of types in libcorePatrick Walton-1/+1
2012-07-06pingpong protocol parses, although I should probably rewrite this to use ↵Eric Holk-0/+7
Paul's Early parser stuff.
2012-06-29Switch the compiler over to using ~[] notation instead of []/~. Closes #2759.Michael Sullivan-4/+4
2012-06-28Add position() to iter/iter-traitBen Blum-0/+3
2012-06-25Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725.Michael Sullivan-4/+4
2012-06-14annotate FIXME in iter-traitTim Chevalier-1/+1
2012-04-27new, simpler approach to the iter libraryNiko Matsakis-0/+35