| Age | Commit message (Expand) | Author | Lines |
| 2020-02-01 | Remove some unsound specializations | Matthew Jasper | -0/+4 |
| 2020-01-28 | Fill tracking issue for `iter_map_while` feature | Waffle | -5/+5 |
| 2020-01-28 | Add `Iterator::map_while` method and corresponding `MapWhile` adapter | Waffle | -1/+192 |
| 2020-01-28 | Simplify `Skip::nth` and `Skip::last` implementations | Oliver Middleton | -13/+7 |
| 2020-01-22 | Avoid overflow in `std::iter::Skip::count` | Oliver Middleton | -2/+8 |
| 2020-01-18 | Make iter::Empty<T> implement Send and Sync for any T | Konrad Borowski | -0/+5 |
| 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-30 | Rollup merge of #67564 - Mark-Simulacrum:iter-adapter-panic, r=LukasKalbertodt | Yuki Okushi | -0/+5 |
| 2019-12-24 | x.py fmt after previous deignore | Mark Rousskov | -412/+713 |
| 2019-12-23 | docs: Iterator adapters have unspecified results after a panic | Mark Rousskov | -0/+5 |
| 2019-12-22 | Format the world | Mark Rousskov | -127/+171 |
| 2019-12-18 | Propagate cfg bootstrap | Mark Rousskov | -9/+1 |
| 2019-12-13 | Require stable/unstable annotations for the constness of all stable functions... | Oliver Scherer | -0/+1 |
| 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 | -80/+143 |
| 2019-11-23 | Rollup merge of #66583 - Phlosioneer:patch-2, r=Dylan-DPC | Mazdak Farrokhzad | -2/+6 |
| 2019-11-22 | follow the convention in this file to use third-person singular verbs | Guanqun Lu | -2/+2 |
| 2019-11-20 | Clarify Step Documentation | Phlosioneer | -2/+6 |
| 2019-11-13 | Rollup merge of #66094 - ArturKovacs:fix-count-doc, r=Dylan-DPC | Yuki Okushi | -3/+4 |
| 2019-11-07 | Rollup merge of #63793 - oli-obk:🧹, r=dtolnay | Mazdak Farrokhzad | -2/+14 |
| 2019-11-07 | Rollup merge of #66017 - LukasKalbertodt:array-into-iter-lint, r=matthewjasper | Mazdak Farrokhzad | -0/+1 |
| 2019-11-06 | Add future incompatibility lint for `array.into_iter()` | Lukas Kalbertodt | -0/+1 |
| 2019-11-06 | Halloween... time to get rid of 👻 | Oliver Scherer | -7/+11 |
| 2019-11-06 | Have tidy ensure that we document all `unsafe` blocks in libcore | Oliver Scherer | -0/+8 |
| 2019-11-05 | Rollup merge of #66019 - olegnn:fixed_std_iter_chain_docs, r=Mark-Simulacrum | Pietro Albini | -1/+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-11-01 | Fixed std::iter::Chain documentation | Oleg Nosov | -1/+1 |
| 2019-10-30 | doc: reword iter module example and mention other methods | Lzu Tao | -21/+14 |
| 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-21 | Auto merge of #64047 - timvermeulen:cmp_min_max_by, r=cuviper | bors | -31/+17 |
| 2019-09-14 | Simplify Iterator::{min_by, max_by} using cmp::{min_by, max_by} | Tim Vermeulen | -31/+17 |
| 2019-09-09 | Rollup merge of #64121 - timvermeulen:iter_step_by_internal, r=scottmcm | Mazdak Farrokhzad | -1/+43 |
| 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 |
| 2019-09-06 | Rollup merge of #64174 - GuillaumeGomez:missing-iterator-examples, r=sfackler | Mazdak Farrokhzad | -0/+80 |
| 2019-09-05 | Add missing code examples on Iterator trait | Guillaume Gomez | -0/+80 |
| 2019-09-04 | Override `StepBy::{try_fold, try_rfold}` | Tim Vermeulen | -1/+43 |
| 2019-08-30 | Rev::rposition counts from the wrong end | Xiang Fan | -7/+0 |
| 2019-08-22 | Apply clippy::needless_return suggestions | Mateusz Mikuła | -2/+2 |
| 2019-08-18 | Fix bug in iter::Chain::size_hint | Tim Vermeulen | -8/+14 |
| 2019-08-17 | Rollup merge of #62737 - timvermeulen:cycle_try_fold, r=scottmcm | Mazdak Farrokhzad | -0/+30 |
| 2019-08-16 | Rollup merge of #60492 - acrrd:issues/54054_chain, r=SimonSapin | Mazdak Farrokhzad | -0/+23 |