summary refs log tree commit diff
path: root/src/libcore/iter/iterator.rs
AgeCommit message (Expand)AuthorLines
2018-11-22fix more linksSteve Klabnik-3/+3
2018-10-11Reword Range*/[Range*]: Iterator E0277 messagesEsteban Küber-6/+22
2018-10-11review commentsEsteban Küber-4/+28
2018-10-09fix tidyEsteban Küber-2/+4
2018-10-09Reword `rustc_on_unimplemented` errors for `Iterator`Esteban Küber-1/+20
2018-09-29Use impl_header_lifetime_elision in libcoreScott McMurray-1/+1
2018-08-25Auto merge of #53385 - matklad:stabilize-find-map, r=KodrAusbors-4/+1
2018-08-15Fix since of Iterator::flatten to be a proper semverAleksey Kladov-1/+1
2018-08-15Stablize Iterator::find_mapAleksey Kladov-4/+1
2018-08-04Remove redundant field names in structsljedrz-9/+9
2018-07-25Enforce #![deny(bare_trait_objects)] in src/libcoreljedrz-1/+1
2018-07-17Clarify short-circuiting behvaior of Iterator::zip.Corey Farwell-1/+3
2018-07-10step_by: leave time of item skip unspecifiedEmerentius-1/+22
2018-07-01Rollup merge of #51511 - Centril:feature/stabilize_iterator_flatten, r=SimonS...Pietro Albini-7/+1
2018-06-13Replace `core::iter::AlwaysOk<T>` by `Result<T, !>`kennytm-2/+2
2018-06-11stabilize Iterator::flatten in 1.29, fixes #48115.Mazdak Farrokhzad-7/+1
2018-06-02Stabilize Iterator::step_byThayne McCombs-4/+1
2018-05-28Document additional use case for iter::inspectNick Babcock-2/+29
2018-05-13Fix incorrect statement about return value for Iterator::zip.Corey Farwell-2/+1
2018-04-29Fix some broken links in docs.Eric Huss-0/+2
2018-04-16Remove unwanted auto-linking and updateGuillaume Gomez-1/+1
2018-04-04Rollup merge of #49607 - cuviper:stable-iter-1.27, r=alexcrichtonkennytm-5/+2
2018-04-04Rollup merge of #49533 - scottmcm:more-must-use, r=nikomatsakiskennytm-0/+1
2018-04-02Stabilize iterator_try_fold in 1.27.0Josh Stone-5/+2
2018-04-03Add Iterator::find_mapAleksey Kladov-0/+32
2018-03-30Add #[must_use] to a few standard library methodsScott McMurray-0/+1
2018-03-24Fix confusing doc for `scan`Sean Silva-5/+5
2018-03-06Rollup merge of #48590 - tshepang:more-simple, r=frewsxcvkennytm-31/+22
2018-02-28doc: no need for the referencesTshepang Lekhonkhobe-31/+22
2018-02-28Minor grammatical/style fix in docs.Alexander Ronald Altman-2/+2
2018-02-25Rollup merge of #48115 - Centril:feature/iterator_flatten, r=alexcrichtonkennytm-2/+79
2018-02-23Rollup merge of #48157 - scottmcm:try-for-each, r=dtolnayManish Goregaokar-6/+42
2018-02-20core::iter::Iterator::flatten: improve docs wrt. deep vs. shallow flatten per...Mazdak Farrokhzad-0/+20
2018-02-20core::iter::Iterator::flatten: tracking issue is #48213Mazdak Farrokhzad-1/+1
2018-02-20core::iter::Flatten: update FlatMap & Flatten according to discussionMazdak Farrokhzad-6/+20
2018-02-20add Iterator::flatten and redefine flat_map(f) in terms of map(f).flatten()Mazdak Farrokhzad-2/+45
2018-02-19Fix count usize link typo in docsGil Cottle-1/+1
2018-02-12Add Iterator::try_for_eachScott McMurray-6/+42
2018-02-11Rollup merge of #47547 - varkor:infinite-iterators-warning-doc, r=frewsxcvkennytm-0/+4
2018-02-01Add filter to detect local crates for rustc_on_unimplementedEsteban Küber-2/+7
2018-01-19Adjust language as per suggestionsvarkor-4/+4
2018-01-18Make example no_runvarkor-1/+1
2018-01-18Document the behaviour of infinite iterators on potentially-computable methodsvarkor-0/+4
2017-12-15doc: a better exampleTshepang Lekhonkhobe-10/+7
2017-11-21Auto merge of #45039 - QuietMisdreavus:doc-spotlight, r=GuillaumeGomez,QuietM...bors-0/+1
2017-11-18Undo the Sized specialization from Iterator::nthScott McMurray-26/+6
2017-11-17spotlight Iterator/Read/Write impls on function return typesQuietMisdreavus-0/+1
2017-11-04CR feedbackScott McMurray-2/+2
2017-10-29Fundamental internal iteration with try_foldScott McMurray-55/+137
2017-10-04Optimize comparison functions of IteratorMatt-72/+114