about summary refs log tree commit diff
path: root/src/libcore/iter.rs
AgeCommit message (Expand)AuthorLines
2015-01-02rollup merge of #20341: nikomatsakis/impl-trait-for-trait-2Alex Crichton-3/+4
2015-01-02rollup merge of #20386: frewsxcv/rm-reexportsAlex Crichton-3/+3
2015-01-02core: use assoc types in `Deref[Mut]`Jorge Aparicio-4/+4
2015-01-02Fix fallout from change, adding explicit `Sized` annotations where necessary.Niko Matsakis-3/+4
2015-01-02Fallout - change array syntax to use `;`Nick Cameron-1/+1
2014-12-31Remove core::iter::MinMaxResult::* public reexportCorey Farwell-3/+3
2014-12-30Fallout from stabilizationAaron Turon-1/+1
2014-12-30Adjustments from reviewAaron Turon-3/+7
2014-12-30std::iter: Add partition and unzip methods to iteratorsAaron Turon-15/+76
2014-12-24Review changesNick Cameron-0/+58
2014-12-22Insert coercions to fn pointer types required for the new typesNiko Matsakis-0/+3
2014-12-20Stabilize cloneAaron Turon-0/+9
2014-12-19libcore: use `#[deriving(Copy)]`Jorge Aparicio-12/+4
2014-12-18librustc: Always parse `macro!()`/`macro![]` as expressions if notPatrick Walton-25/+25
2014-12-17rollup merge of #19873: drewm1980/masterAlex Crichton-26/+26
2014-12-17rollup merge of #19827: japaric/clone-ucAlex Crichton-0/+124
2014-12-15Standardize some usages of "which" in docstringsAndrew Wagner-26/+26
2014-12-14libcore: make iterator adaptors `Clone`ableJorge Aparicio-0/+124
2014-12-13libcore: fix move semantics falloutJorge Aparicio-1/+1
2014-12-13libcore: use unboxed closures in `ExactSizeIterator` methodsJorge Aparicio-1/+1
2014-12-13libcore: use unboxed closures in `IteratorExt` methodsJorge Aparicio-7/+7
2014-12-13libcore: use unboxed closures in the fields of `Unfold`Jorge Aparicio-11/+18
2014-12-13libcore: use unboxed closures in the fields of `Inspect`Jorge Aparicio-11/+18
2014-12-13libcore: use unboxed closures in the fields of `FlatMap`Jorge Aparicio-10/+17
2014-12-13libcore: use unboxed closures in the fields of `Scan`Jorge Aparicio-6/+10
2014-12-13libcore: use unboxed closures in the fields of `TakeWhile`Jorge Aparicio-5/+5
2014-12-13libcore: use unboxed closures in the fields of `SkipWhile`Jorge Aparicio-5/+5
2014-12-13libcore: use unboxed closures in the fields of `FilterMap`Jorge Aparicio-7/+12
2014-12-13libcore: use unboxed closures in the fields of `Filter`Jorge Aparicio-6/+9
2014-12-13libcore: use unboxed closures in the fields of `Map`Jorge Aparicio-10/+19
2014-12-08librustc: Make `Copy` opt-in.Niko Matsakis-2/+9
2014-12-05Utilize fewer reexportsCorey Farwell-10/+13
2014-12-05rollup merge of #19512: cybergeek94/masterCorey Richardson-3/+34
2014-12-04core::iter::Unfold: reword docs and add exampleAustin Bonander-3/+34
2014-12-03Overload the `==` operatorJorge Aparicio-2/+10
2014-11-26/*! -> //!Steve Klabnik-49/+45
2014-11-25libs: stabilize iter moduleAaron Turon-44/+199
2014-11-21Mention that find() doesn't consume the full iteratorManish Goregaokar-1/+3
2014-11-18add Cloned iterator adaptorAlexis Beingessner-1/+40
2014-11-17Switch to purely namespaced enumsSteven Fackler-0/+2
2014-11-14Revert the need for initial values with arithmetic iteratorsBrendan Zabarauskas-18/+50
2014-11-13Remove Signed trait and add SignedInt traitBrendan Zabarauskas-0/+4
2014-11-13Deprecate Zero and One traitsBrendan Zabarauskas-30/+39
2014-11-13Move checked arithmetic operators into Int traitBrendan Zabarauskas-18/+16
2014-11-13Move saturating operator methods into IntBrendan Zabarauskas-1/+1
2014-11-08Renamed Extendable to Extendgamazeps-2/+3
2014-10-30Add a `repeat` function to the preludeJakub Bukaj-1/+6
2014-10-19Remove a large amount of deprecated functionalityAlex Crichton-21/+0
2014-10-14Fix the formatting of the documentation for OrdIterator.min_max.Ms2ger-1/+1
2014-09-25Fix Iterator::fuse exampleSteven Fackler-1/+3