summary refs log tree commit diff
path: root/library/core/src/iter
AgeCommit message (Expand)AuthorLines
2023-06-29Rollup merge of #113054 - Rageking8:make-`rustc_on_unimplemented`-std-agnosti...Matthias Krüger-4/+4
2023-06-29Rollup merge of #112670 - petrochenkov:typriv, r=eholkMatthias Krüger-6/+6
2023-06-27Make `rustc_on_unimplemented` std-agnosticRageking8-4/+4
2023-06-25Mark the StepBy specialization as unsafeThe 8472-8/+8
2023-06-25StepBy<Range<{int <= usize}>> can be TrustedLenThe 8472-1/+7
2023-06-25doccomments for StepBy specializationsThe 8472-0/+41
2023-06-23add inline annotation to concrete implsThe 8472-0/+7
2023-06-23Specialize StepBy<Range<{integer}>>The 8472-36/+321
2023-06-15privacy: Do not mark items reachable farther than their nominal visibilityVadim Petrochenkov-6/+6
2023-06-14Fix typoAntonios Barotsis-1/+1
2023-05-29Make `TrustedStep` require `Copy`Scott McMurray-13/+14
2023-05-23Rollup merge of #111612 - ChayimFriedman2:collect-into-slice-ref, r=petrochenkovDylan DPC-0/+10
2023-05-20optimize next_chunk impls for Filter and FilterMapThe 8472-1/+116
2023-05-15Give better error when collecting into `&[T]`Chayim Refael Friedman-0/+10
2023-05-11Populate effective visibilities in rustc_privacyBryanskiy-0/+6
2023-05-08Revert "Populate effective visibilities in `rustc_privacy`"Michael Goulet-6/+0
2023-05-08Auto merge of #106621 - ozkanonur:enable-elided-lifetimes-for-doctests, r=Mar...bors-1/+1
2023-05-07enable `rust_2018_idioms` for doctestsozkanonur-1/+1
2023-05-05Populate effective visibilities in `rustc_privacy`Bryanskiy-0/+6
2023-04-29Rollup merge of #110958 - compiler-errors:stdlib-refinement, r=cuviperDylan DPC-4/+16
2023-04-28Make sure that signatures aren't accidental refinementsMichael Goulet-4/+16
2023-04-28replace version placeholdersPietro Albini-7/+7
2023-04-25simplify TrustedLen implsTamir Duberstein-34/+28
2023-04-16rm const traits in libcoreDeadbeef-5/+2
2023-04-12remove some unneeded importsKaDiWa-2/+0
2023-04-08Revert "Make the `Step` implementations const."Deadbeef-16/+7
2023-04-08Revert "Mark DoubleEndedIterator as #[const_trait] using rustc_do_not_const_c...Deadbeef-27/+9
2023-04-01Improve grammar of Iterator.partition_in_placeShawn M Moore-2/+2
2023-03-27update documentationThe 8472-8/+10
2023-03-27replace advance_by returning usize with Result<(), NonZeroUsize>The 8472-107/+138
2023-03-27Change advance(_back)_by to return `usize` instead of `Result<(), usize>`The 8472-168/+138
2023-03-25Auto merge of #99929 - the8472:default-iters, r=scottmcmbors-0/+111
2023-03-21Rollup merge of #106434 - clubby789:document-sum-result, r=the8472nils-4/+42
2023-03-20Add example for `Option::product` and `Result::product`clubby789-4/+36
2023-03-20Rollup merge of #109337 - frengor:collect_into_doc, r=scottmcmMatthias Krüger-4/+4
2023-03-19Improve collect_into documentationfren_gor-4/+4
2023-03-18Mark DoubleEndedIterator as #[const_trait] using rustc_do_not_const_check, im...onestacked-9/+27
2023-03-17Make the `Step` implementations const.onestacked-7/+16
2023-03-17Auto merge of #108862 - Mark-Simulacrum:bootstrap-bump, r=pietroalbinibors-2/+2
2023-03-15unequal → not equalgimbles-1/+1
2023-03-15Bump to latest betaMark Rousskov-2/+2
2023-02-28relax bounds on iterator adapter Default implsThe 8472-25/+6
2023-02-28rewrite iterator `Default` tests as doctestsThe 8472-0/+59
2023-02-28Implement Default for some alloc/core iteratorsThe 8472-0/+71
2023-02-26Rollup merge of #107890 - obeis:mapping-to-unit, r=cjgillotMatthias Krüger-0/+2
2023-02-24Rollup merge of #106541 - fee1-dead-contrib:no-const-check-no, r=thomccDylan DPC-0/+76
2023-02-23Add lint against `Iterator::map` receiving a callable that returns `()`Obei Sideg-0/+2
2023-02-17Rollup merge of #104068 - yancyribbens:partial-cmp-doc-update, r=scottmcmMatthias Krüger-2/+20
2023-02-16rustdoc: Update the description to include PartialOrd elementsyancy-2/+20
2023-02-13Auto merge of #107634 - scottmcm:array-drain, r=thomccbors-13/+80