summary refs log tree commit diff
path: root/library/core/src/iter/traits
AgeCommit message (Expand)AuthorLines
2021-03-18Fix typo/inaccuracy in the documentation of Iterator::skip_whileFrank Steffahn-1/+1
2021-03-13Add `reverse` search alias for Iterator::rev()Sebastian Widua-0/+1
2021-02-24Add suggestion for iterators in iteratorsKevin Per-0/+1
2021-02-22Auto merge of #81732 - m-ou-se:inherit-overflow-checks, r=Mark-Simulacrumbors-24/+48
2021-02-17Rollup merge of #82198 - SkiFire13:optimize-iter-is-sorted, r=sfacklerGuillaume Gomez-9/+16
2021-02-16Optimize Iterator::is_sorted_by by using Iterator::all for internal iterationGiacomo Stevanato-9/+16
2021-02-14Use `#[rustc_inherit_overflow_checks]` instead of Add::add etc.Mara Bos-24/+48
2021-02-09Rollup merge of #81697 - xfix:every-doc-alias, r=Mark-SimulacrumDylan DPC-0/+1
2021-02-07Rollup merge of #81742 - sdroege:exact-size-iterator-correctness, r=kennytmGuillaume Gomez-0/+6
2021-02-04Stabilize feature(iterator_fold_self): Iterator::reduceMara Bos-3/+1
2021-02-04Improve documentation of Iterator::{fold, reduce}.Mara Bos-5/+16
2021-02-04Rename Iterator::fold_first to reduce.Mara Bos-4/+4
2021-02-04Add a note about the correctness and the effect on unsafe code to the `ExactS...Sebastian Dröge-0/+6
2021-02-03Add "every" as a doc alias for "all".Konrad Borowski-0/+1
2021-02-03Rollup merge of #81144 - nhwn:typo-map-while, r=jackh726Guillaume Gomez-1/+1
2021-01-30Clarify that guarantees extend to other advancing iterator methods.The8472-3/+5
2021-01-22Rollup merge of #81173 - lukaslueg:intersperse_docs, r=m-ou-seMara Bos-3/+48
2021-01-21Fix typoLukas Lueg-1/+1
2021-01-21Expand docs on Iterator::intersperseLukas Lueg-3/+48
2021-01-20Deprecate-in-future the constants superceded by RFC 2700bstrie-6/+0
2021-01-17fixed formatting typo in map_whileNathan Nguyen-1/+1
2021-01-14Rollup merge of #80567 - lukaslueg:intersperse_with, r=m-ou-seMara Bos-3/+36
2021-01-13Improve Iterator::intersperse_ docsLukas Lueg-6/+14
2020-12-31Add Iterator::intersperse_withLukas Lueg-1/+26
2020-12-31Remove many unnecessary manual link resolves from libraryCamelid-2/+0
2020-12-30Add tracking issueCamelid-1/+1
2020-12-30Add Iterator::intersperseJonas Schievink-1/+23
2020-12-28Add "length" as doc alias to len methodsKonrad Borowski-0/+1
2020-12-10Improve wording of `flatten()` docsCamelid-2/+2
2020-10-26Add lexicographical comparison docRustin-Liu-8/+8
2020-10-22change the order of type arguments on ControlFlowLeonora Tindall-12/+6
2020-10-19Rollup merge of #77877 - scottmcm:fewer-try-trait-method-references, r=shepma...Guillaume Gomez-2/+2
2020-10-15Deny broken intra-doc links in linkcheckerJoshua Nelson-3/+6
2020-10-12Use intra-doc links for links to module-level docsCamelid-6/+6
2020-10-12Use `try{}` in `try_fold` to decouple library from `Try` detailsScott McMurray-2/+2
2020-10-01Add tracking issueTim Vermeulen-2/+2
2020-10-01Rollup merge of #76909 - timvermeulen:advance_by, r=AmanieuDylan DPC-16/+90
2020-09-28Rollup merge of #77194 - pickfire:patch-7, r=withoutboatsRalf Jung-0/+2
2020-09-25Rename Iterator::get_uncheckedMatthew Jasper-1/+3
2020-09-26Reposition iterator doc alias reduce before inlineIvan Tham-1/+1
2020-09-26Add alias for iterator foldIvan Tham-0/+2
2020-09-20Add advance_by and advance_back_byTim Vermeulen-16/+90
2020-09-18Use intra-doc links in core/src/iter when possibleAlexis Bourget-83/+64
2020-09-07Rollup merge of #76338 - euclio:intra-link-iterator, r=jyn514Dylan DPC-13/+13
2020-09-07Rollup merge of #76318 - scottmcm:one-control-flow, r=ecstatic-morseDylan DPC-8/+8
2020-09-05Improve the documentation of `filter()` and `filter_map()`.Edd Barrett-18/+8
2020-09-04Add `BREAK` too, and improve the commentsScott McMurray-7/+7
2020-09-04add some intra-doc links to `Iterator`Andy Russell-13/+13
2020-09-04Use ops::ControlFlow in graph::iterateScott McMurray-1/+1
2020-09-03Auto merge of #70793 - the8472:in-place-iter-collect, r=Amanieubors-0/+14