about summary refs log tree commit diff
path: root/src/libcore/iter/traits
AgeCommit message (Expand)AuthorLines
2020-04-16Dogfood or_patterns in the standard libraryJosh Stone-2/+2
2020-04-03Replace float module consts with assoc consts in documentationLinus Färnstrand-3/+3
2020-04-03Replace max/min_value() with MAX/MIN assoc constsLinus Färnstrand-1/+1
2020-03-27remove unused importdylan_DPC-1/+0
2020-03-27simplify testdylan_DPC-4/+1
2020-03-26fix docsdylan_DPC-2/+5
2020-03-26Add fold_selfNathan West-16/+40
2020-03-22Auto merge of #68820 - WaffleLapkin:remove_finished_from_map_while, r=LukasKa...bors-10/+11
2020-03-21slightly change the `Iterator::map_while` docsWaffle-14/+4
2020-03-10Rollup merge of #69514 - GuillaumeGomez:remove-spotlight, r=kinnisonMazdak Farrokhzad-1/+0
2020-03-03Rollup merge of #69213 - LeSeulArtichaut:improve-doc-iter, r=steveklabnikYuki Okushi-1/+3
2020-03-02Apply suggestions from code reviewLeSeulArtichaut-2/+3
2020-02-27docs: note that find(f) is equivalent to filter(f).next() in the iterator docs.Matthias Krüger-0/+4
2020-02-27Remove spotlight usageGuillaume Gomez-1/+0
2020-02-24adjuste doc of `map_while`Waffle-10/+6
2020-02-16Improve documentation on iteratorsLeSeulArtichaut-1/+2
2020-02-04Remove `finished` flag from `MapWhile`Waffle-0/+15
2020-01-28Fill tracking issue for `iter_map_while` featureWaffle-1/+1
2020-01-28Add `Iterator::map_while` method and corresponding `MapWhile` adapterWaffle-1/+101
2020-01-08Use matches macro in libcore and libstdIgor Aleksanov-8/+2
2020-01-06Use Self instead of $typeLzu Tao-8/+8
2020-01-02Add Iterator::try_findMOZGIII-0/+37
2019-12-24x.py fmt after previous deignoreMark Rousskov-145/+257
2019-12-22Format the worldMark Rousskov-8/+8
2019-12-06Format libcore with rustfmt (including tests and benches)David Tolnay-6/+6
2019-12-03Tweak wording of `collect()` on bad target typeEsteban Küber-2/+2
2019-11-26Format libcore with rustfmtDavid Tolnay-14/+20
2019-11-22follow the convention in this file to use third-person singular verbsGuanqun Lu-2/+2
2019-11-13Rollup merge of #66094 - ArturKovacs:fix-count-doc, r=Dylan-DPCYuki Okushi-3/+4
2019-11-06Add future incompatibility lint for `array.into_iter()`Lukas Kalbertodt-0/+1
2019-11-04Improve wording in the documentation of `Iterator::count()`.Artur Kovacs-4/+4
2019-11-04Fixed trailing whitespace.Artur Kovacs-1/+1
2019-11-04Fix documentation for `Iterator::count()`.Artur Kovacs-2/+3
2019-10-28doc: introduce `once` in `iter::chain` documentLzu Tao-3/+18
2019-10-20Remove leading :: from paths in doc examplesMikko Rantanen-1/+1
2019-10-01replace try_for_each with try_fold to generate less codeAndreas Jonson-13/+14
2019-09-24Rollup merge of #64296 - KodrAus:chore/iter_order_by, r=CentrilMazdak Farrokhzad-3/+3
2019-09-14Simplify Iterator::{min_by, max_by} using cmp::{min_by, max_by}Tim Vermeulen-31/+17
2019-09-09document the unstable iter_order_by library featureAshley Mannix-3/+3
2019-09-06Add Iterator comparison methods that take a comparison functionTim Vermeulen-6/+103
2019-09-05Add missing code examples on Iterator traitGuillaume Gomez-0/+80
2019-08-15Fix typo in DoubleEndedIterator::nth_back docJens Hausdorf-1/+1
2019-08-12Reduce genericity in Iterator::lastJosh Stone-1/+6
2019-08-12Explicitly test Iterator::position overflowsJosh Stone-3/+2
2019-08-12Explicitly test Iterator::count overflowsJosh Stone-4/+3
2019-08-12Use if-let in is_sorted_byJosh Stone-3/+2
2019-08-12Reduce the genericity of closures in the iterator traitsJosh Stone-80/+194
2019-08-09Don't use associated type bounds in docs until it is stableIlija Tovilo-3/+2
2019-08-09Add missing #![feature(associated_type_bounds)]Ilija Tovilo-0/+2
2019-08-08Use associated_type_bounds where applicable - closes #61738Ilija Tovilo-2/+2