about summary refs log tree commit diff
path: root/src/libcore/iter.rs
AgeCommit message (Expand)AuthorLines
2013-05-13Remove re-exports from libcore/core.rcAlex Crichton-0/+1
2013-05-10test: Use the new `for` protocolAlex Crichton-3/+28
2013-05-10core: Use the new `for` protocolAlex Crichton-20/+28
2013-05-08rename iter::iter_to_vec to iter::to_vecDaniel Micay-6/+5
2013-04-30iter: add max and min functionsDaniel Micay-2/+66
2013-04-30iter: add a find functionDaniel Micay-0/+29
2013-04-28make way for a new iter moduleDaniel Micay-323/+78
2013-04-19test: Rewrite nbody and spectralnorm shootout benchmarksPatrick Walton-0/+4
2013-04-13Avoid excessive allocations and copies in iter::to_vecBjörn Steinbrink-1/+1
2013-04-10Added iter_to_vec conversion fnMarvin Löbel-0/+26
2013-03-26librustc: Modify all code to use new lifetime binder syntaxPatrick Walton-1/+1
2013-03-26Fixes mozilla/rust#3612.Felix S. Klock II-1/+2
2013-03-22libcore: Remove `pure` from libcore. rs=depurePatrick Walton-63/+50
2013-03-22librustc: Remove all uses of `static` from functions. rs=destaticPatrick Walton-2/+2
2013-03-18librustc: Convert all uses of old lifetime notation to new lifetime notation....Patrick Walton-1/+1
2013-03-13add a trait for mutable iteratorsDaniel Micay-0/+4
2013-03-11librustc: Replace all uses of `fn()` with `&fn()`. rs=defunPatrick Walton-26/+26
2013-03-06Add manual &self/ and &static/ and /&self declarations thatNiko Matsakis-1/+1
2013-02-26Add current year in the copyright headerOlivier Saut-1/+1
2013-02-26Various typos correctedOlivier Saut-8/+8
2013-02-20librustc: Separate most trait bounds with '+'. rs=plussingPatrick Walton-7/+7
2013-02-15libcore: Get rid of `move`.Luqman Aden-6/+6
2013-02-13Remove die!, raplace invocations with fail! Issue #4524 pt 3Nick Desaulniers-2/+2
2013-02-07add a ReverseIter traitDaniel Micay-0/+4
2013-02-07Make ~fn non-copyable, make &fn copyable, split barefn/closure types,Niko Matsakis-3/+0
2013-01-31Replace most invocations of fail keyword with die! macroNick Desaulniers-2/+2
2013-01-30librustc: Change `self` as a type to `Self` everywhere. r=brsonPatrick Walton-1/+1
2013-01-14spelling fixes for iter module docstringsDaniel Micay-3/+3
2013-01-14Inlining methods/functions in core.gifnksm-0/+18
2013-01-08librustc: Make unqualified identifier searches terminate at the nearest modul...Patrick Walton-0/+2
2013-01-08Revert "librustc: Make unqualified identifier searches terminate at the neare...Patrick Walton-2/+0
2013-01-08librustc: Make unqualified identifier searches terminate at the nearest modul...Patrick Walton-0/+2
2013-01-04Rename option::get_default => get_or_default, get_zero => get_or_zeroTim Chevalier-1/+1
2012-12-27librustc: Terminate name searches at the nearest module scope for paths that ...Patrick Walton-0/+1
2012-12-17Change iter::find's closure to take a refErick Tryzelaar-20/+20
2012-12-17core: Add &self to core::iter methodsErick Tryzelaar-19/+20
2012-12-13Change some uses of static methods to use the trait pathBrian Anderson-4/+4
2012-12-03Update license, add license boilerplate to most files. Remainder will follow.Graydon Hoare-0/+10
2012-11-29impls of traits cannot define methods on the anonymous traitBrian Anderson-0/+1
2012-11-02libcore: Implement a memory-safe "each_val" for data in aliasable, mutable lo...Patrick Walton-0/+7
2012-10-30Remove trait of TimesIxMahmut Bulut-4/+0
2012-10-23Remove uses of binary move - <- - from tests and librariesTim Chevalier-1/+1
2012-10-04Forbid deprecated modes again in coreTim Chevalier-0/+3
2012-10-02Removing explicit uses of + modeTim Chevalier-14/+13
2012-10-01De-export iter and result. Part of #3583.Graydon Hoare-32/+42
2012-09-28Add a demoded version of ptr::addr_ofTim Chevalier-9/+9
2012-09-28Finish demoding iter: from_elem, copy_seq, map, appendTim Chevalier-7/+7
2012-09-28Squash a couple pattern warnings that I missedTim Chevalier-3/+3
2012-09-28Demode iter::foldl and friendsTim Chevalier-23/+18
2012-09-28Demoding in iter: any, all, map_to_vec, flat_map_to_vec, filter_to_vecTim Chevalier-13/+13