about summary refs log tree commit diff
path: root/library/core/src/iter
AgeCommit message (Expand)AuthorLines
2022-03-26Remove mention of HashMap<K, V> not offering iter_mutdlup-4/+3
2022-03-24Auto merge of #87667 - the8472:document-in-place-iter, r=yaahcbors-0/+9
2022-03-22add perf side effect docs to `Iterator::cloned()`Andre Bogus-0/+16
2022-03-21add module-level documentation for vec's in-place iterationThe8472-0/+9
2022-03-18Rollup merge of #94115 - scottmcm:iter-process-by-ref, r=yaahcMatthias Krüger-2/+48
2022-03-10Rollup merge of #93950 - T-O-R-U-S:use-modern-formatting-for-format!-macros, ...Dylan DPC-26/+26
2022-03-10Rollup merge of #94587 - JKAnderson409:issue-90107-fix, r=scottmcmMatthias Krüger-3/+16
2022-03-10Use implicit capture syntax in format_argsT-O-R-U-S-26/+26
2022-03-10Rollup merge of #94746 - notriddle:notriddle/method-rustc-on-unimplemented, r...Matthias Krüger-0/+5
2022-03-10Let `try_collect` take advantage of `try_fold` overridesScott McMurray-2/+48
2022-03-09Rollup merge of #93057 - frengor:iter_collect_into, r=m-ou-seMatthias Krüger-0/+71
2022-03-09Add tracking issuefren_gor-1/+1
2022-03-09diagnostics: use rustc_on_unimplemented to recommend `[].iter()`Michael Howell-0/+5
2022-03-05doc: `Iterator::partition` use partial type hintsGentoli-3/+3
2022-03-04Add suggested changes to the docsJeff-3/+3
2022-03-04Make use statement visibleJeff-1/+1
2022-03-03Document new recommended use of methodJeff-3/+16
2022-03-03Doc: Fix use of quote instead of backstick in Adapter::map.Axel Viala-1/+1
2022-02-20Add collect_intofren_gor-0/+71
2022-02-16Add a `try_collect()` helper method to `Iterator`Arthur Lafrance-0/+82
2022-02-09Suggest collecting into `Vec<_>` when collecting into `[_]`Michael Goulet-0/+26
2022-02-07Change `ResultShunt` to be generic over `Try`Scott McMurray-45/+43
2022-01-28Fix a typo from #92899scottmcm-1/+1
2022-01-27Rollup merge of #92899 - cameron1024:zip-docs, r=dtolnayMatthias Krüger-0/+36
2022-01-27Touch up PR 92899 Iterator::zip docsDavid Tolnay-8/+13
2022-01-27mention std::iter::zip in Iterator::zip docscameron-0/+31
2022-01-19Rollup merge of #92630 - steffahn:lift_bounds_on_BuildHasherDefault, r=yaahcMatthias Krüger-6/+6
2022-01-11Auto merge of #92070 - rukai:replace_vec_into_iter_with_array_into_iter, r=Ma...bors-10/+10
2022-01-09Compute most of Public/Exported access level in rustc_resolveLamb-7/+11
2022-01-09eplace usages of vec![].into_iter with [].into_iterLucas Kent-10/+10
2022-01-07Also change PhantomData parameter of iter::Empty, and future::PendingFrank Steffahn-6/+6
2021-12-23Switch all libraries to the 2021 editionDeadbeef-10/+0
2021-12-15Rollup merge of #91916 - steffahn:fix-typos, r=dtolnayMatthias Krüger-3/+3
2021-12-15Rollup merge of #91881 - Patrick-Poitras:stabilize-iter-zip, r=scottmcmMatthias Krüger-4/+3
2021-12-14Stabilize iter::zip.PFPoitras-4/+3
2021-12-14Fix a bunch of typosFrank Steffahn-3/+3
2021-12-13[ReviewFix] LinguisticsJonas Berlin-1/+1
2021-12-13Iterator::cycle() — document empty iterator special caseJonas Berlin-1/+2
2021-12-09Improve std::iter::zip example.Andrew Banchich-6/+14
2021-12-04Add a `try_reduce` method to the Iterator traitkit-0/+80
2021-12-02Make array::{try_from_fn, try_map} and Iterator::try_find generic over TryScott McMurray-12/+32
2021-11-30Add `drop_while` as doc alias to `Iterator::skip_while`Ashok Gautham Jadatharan-0/+1
2021-11-27Auto merge of #91288 - matthiaskrgr:rollup-yp5h41r, r=matthiaskrgrbors-2/+4
2021-11-27Rollup merge of #83791 - the8472:relax-zip-side-effect-guarantee, r=dtolnayMatthias Krüger-2/+4
2021-11-19Fix Iterator::advance_by contract inconsistencyThe8472-22/+17
2021-10-31Rollup merge of #89897 - jkugelman:must-use-core, r=joshtriplettMatthias Krüger-0/+1
2021-10-30Add #[must_use] to remaining core functionsJohn Kugelman-0/+1
2021-10-20Rollup merge of #88789 - the8472:rm-zip-bound, r=JohnTitorYuki Okushi-6/+2
2021-10-19Tiny tweak to Iterator::unzip() doc comment example.moxian-3/+3
2021-10-11inline next() on &mut Iterator implThe8472-0/+1