| Age | Commit message (Expand) | Author | Lines |
| 2020-05-29 | Add extend_one tracking issue 72631 | Josh Stone | -2/+2 |
| 2020-05-29 | Use a canonical name for extend_reserve(additional) | Josh Stone | -1/+3 |
| 2020-05-29 | Add Extend::{extend_one,extend_reserve} | Josh Stone | -5/+24 |
| 2020-05-29 | Clarify the documentation of take | Alexis Bourget | -0/+11 |
| 2020-05-26 | Add remark regarding DoubleEndedIterator | philipp | -0/+26 |
| 2020-05-18 | Tweak `partition`, `unzip`, `try_find`. | Nicholas Nethercote | -7/+7 |
| 2020-05-18 | Make `fold` standalone. | Nicholas Nethercote | -13/+20 |
| 2020-05-16 | Rollup merge of #72166 - nnethercote:simpler-slice-Iterator-methods, r=cuviper | Dylan DPC | -1/+1 |
| 2020-05-13 | Change `Iterator::nth` to use `self.next()` in a `while` loop. | Nicholas Nethercote | -1/+1 |
| 2020-04-26 | Use min_specialization in liballoc | Matthew Jasper | -0/+2 |
| 2020-04-16 | Dogfood or_patterns in the standard library | Josh Stone | -2/+2 |
| 2020-04-03 | Replace float module consts with assoc consts in documentation | Linus Färnstrand | -3/+3 |
| 2020-04-03 | Replace max/min_value() with MAX/MIN assoc consts | Linus Färnstrand | -1/+1 |
| 2020-03-27 | remove unused import | dylan_DPC | -1/+0 |
| 2020-03-27 | simplify test | dylan_DPC | -4/+1 |
| 2020-03-26 | fix docs | dylan_DPC | -2/+5 |
| 2020-03-26 | Add fold_self | Nathan West | -16/+40 |
| 2020-03-22 | Auto merge of #68820 - WaffleLapkin:remove_finished_from_map_while, r=LukasKa... | bors | -10/+11 |
| 2020-03-21 | slightly change the `Iterator::map_while` docs | Waffle | -14/+4 |
| 2020-03-10 | Rollup merge of #69514 - GuillaumeGomez:remove-spotlight, r=kinnison | Mazdak Farrokhzad | -1/+0 |
| 2020-03-03 | Rollup merge of #69213 - LeSeulArtichaut:improve-doc-iter, r=steveklabnik | Yuki Okushi | -1/+3 |
| 2020-03-02 | Apply suggestions from code review | LeSeulArtichaut | -2/+3 |
| 2020-02-27 | docs: note that find(f) is equivalent to filter(f).next() in the iterator docs. | Matthias Krüger | -0/+4 |
| 2020-02-27 | Remove spotlight usage | Guillaume Gomez | -1/+0 |
| 2020-02-24 | adjuste doc of `map_while` | Waffle | -10/+6 |
| 2020-02-16 | Improve documentation on iterators | LeSeulArtichaut | -1/+2 |
| 2020-02-04 | Remove `finished` flag from `MapWhile` | Waffle | -0/+15 |
| 2020-01-28 | Fill tracking issue for `iter_map_while` feature | Waffle | -1/+1 |
| 2020-01-28 | Add `Iterator::map_while` method and corresponding `MapWhile` adapter | Waffle | -1/+101 |
| 2020-01-08 | Use matches macro in libcore and libstd | Igor Aleksanov | -8/+2 |
| 2020-01-06 | Use Self instead of $type | Lzu Tao | -8/+8 |
| 2020-01-02 | Add Iterator::try_find | MOZGIII | -0/+37 |
| 2019-12-24 | x.py fmt after previous deignore | Mark Rousskov | -145/+257 |
| 2019-12-22 | Format the world | Mark Rousskov | -8/+8 |
| 2019-12-06 | Format libcore with rustfmt (including tests and benches) | David Tolnay | -6/+6 |
| 2019-12-03 | Tweak wording of `collect()` on bad target type | Esteban Küber | -2/+2 |
| 2019-11-26 | Format libcore with rustfmt | David Tolnay | -14/+20 |
| 2019-11-22 | follow the convention in this file to use third-person singular verbs | Guanqun Lu | -2/+2 |
| 2019-11-13 | Rollup merge of #66094 - ArturKovacs:fix-count-doc, r=Dylan-DPC | Yuki Okushi | -3/+4 |
| 2019-11-06 | Add future incompatibility lint for `array.into_iter()` | Lukas Kalbertodt | -0/+1 |
| 2019-11-04 | Improve wording in the documentation of `Iterator::count()`. | Artur Kovacs | -4/+4 |
| 2019-11-04 | Fixed trailing whitespace. | Artur Kovacs | -1/+1 |
| 2019-11-04 | Fix documentation for `Iterator::count()`. | Artur Kovacs | -2/+3 |
| 2019-10-28 | doc: introduce `once` in `iter::chain` document | Lzu Tao | -3/+18 |
| 2019-10-20 | Remove leading :: from paths in doc examples | Mikko Rantanen | -1/+1 |
| 2019-10-01 | replace try_for_each with try_fold to generate less code | Andreas Jonson | -13/+14 |
| 2019-09-24 | Rollup merge of #64296 - KodrAus:chore/iter_order_by, r=Centril | Mazdak Farrokhzad | -3/+3 |
| 2019-09-14 | Simplify Iterator::{min_by, max_by} using cmp::{min_by, max_by} | Tim Vermeulen | -31/+17 |
| 2019-09-09 | document the unstable iter_order_by library feature | Ashley Mannix | -3/+3 |
| 2019-09-06 | Add Iterator comparison methods that take a comparison function | Tim Vermeulen | -6/+103 |