| Age | Commit message (Expand) | Author | Lines |
| 2024-07-14 | doc: Suggest `str::repeat` over `iter::repeat().take().collect()` | tesuji | -0/+4 |
| 2024-07-07 | Specialize `TrustedLen` for `Iterator::unzip()` | Chayim Refael Friedman | -15/+107 |
| 2024-07-02 | chore: remove duplicate words | hattizai | -1/+1 |
| 2024-06-25 | add comments explaining optimizations for Filter::next_chunk | The 8472 | -1/+3 |
| 2024-06-25 | fix Drop items getting leaked in Filter::next_chunk | The 8472 | -45/+43 |
| 2024-06-24 | Replace `MaybeUninit::uninit_array()` with array repeat expression. | Kevin Reid | -5/+6 |
| 2024-06-19 | core: implement `UncheckedIterator` for `RepeatN` | joboet | -1/+3 |
| 2024-06-13 | Rollup merge of #126347 - slanterns:try_simplify, r=scottmcm | León Orell Valerian Liehr | -10/+11 |
| 2024-06-13 | Simplify `try_*` on `Iterator` | Slanterns | -10/+11 |
| 2024-06-11 | remove cfg(bootstrap) | Pietro Albini | -2/+1 |
| 2024-06-04 | Add function `core::iter::chain` | Ross MacArthur | -2/+40 |
| 2024-05-20 | Implement BOXED_SLICE_INTO_ITER | Michael Goulet | -1/+2 |
| 2024-05-08 | Use generic `NonZero`. | Markus Reiter | -5/+5 |
| 2024-05-01 | Step bootstrap cfgs | Mark Rousskov | -2/+2 |
| 2024-05-01 | Replace version placeholders for 1.79 | Mark Rousskov | -1/+1 |
| 2024-04-29 | Add diagnostic item for std::iter::Iterator::enumerate | Christopher B. Speir | -0/+1 |
| 2024-04-25 | remove trivial bounds | lcnr | -13/+7 |
| 2024-04-24 | Rollup merge of #124308 - CBSpeir:diagnostic-item-enumerate, r=compiler-errors | León Orell Valerian Liehr | -0/+1 |
| 2024-04-24 | Error on using `yield` without also using `#[coroutine]` on the closure | Oli Scherer | -1/+1 |
| 2024-04-23 | Add diagnostic item for std::iter::Enumerate | Christopher B. Speir | -0/+1 |
| 2024-04-22 | Stabilize generic `NonZero`. | Markus Reiter | -3/+6 |
| 2024-04-18 | Rollup merge of #123406 - krtab:fix_remainder_iterchunk, r=scottmcm | Jubilee | -1/+14 |
| 2024-04-16 | Rollup merge of #123859 - krtab:uneeded_clone, r=cuviper | Guillaume Gomez | -8/+8 |
| 2024-04-16 | Remove uneeded clones now that TrustedStep implies Copy | Arthur Carcano | -8/+8 |
| 2024-04-14 | Auto merge of #107462 - WaffleLapkin:from_iterator_for_tuple, r=dtolnay | bors | -0/+33 |
| 2024-04-08 | Rollup merge of #123564 - scottmcm:step-by-div-zero, r=joboet | Matthias Krüger | -31/+49 |
| 2024-04-07 | Fix typo in library/core/src/iter/traits/iterator.rs | Gabriel Dolberg | -1/+1 |
| 2024-04-06 | Don't emit divide-by-zero panic paths in `StepBy::len` | Scott McMurray | -31/+49 |
| 2024-04-04 | force exhaustion in iter::ArrayChunks::into_remainder | Arthur Carcano | -1/+14 |
| 2024-04-03 | Add docs for `FromIterator<(AE, BE)> for (A, B)` | Maybe Waffle | -0/+19 |
| 2024-04-03 | Implement `FromIterator<(AE, BE)>` for `(impl Default+Extend<AE>, impl Defaul... | Maybe Waffle | -0/+14 |
| 2024-03-25 | Import the 2021 prelude in the core crate | Daniel Paoliello | -3/+1 |
| 2024-03-22 | Implement `FusedIterator` for `gen` block | Shoyu Vanilla | -0/+1 |
| 2024-03-14 | Rollup merge of #122461 - the8472:fix-step-forward-unchecked, r=Amanieu | Matthias Krüger | -2/+28 |
| 2024-03-14 | fix unsoundness in Step::forward_unchecked for signed integers | The 8472 | -2/+28 |
| 2024-03-13 | Improve Step docs | Christopher Durham | -8/+7 |
| 2024-03-03 | Be more lax in `.into_iter()` suggestion when encountering `Iterator` methods... | Esteban Küber | -9/+0 |
| 2024-03-03 | Use root obligation on E0277 for some cases | Esteban Küber | -24/+45 |
| 2024-02-24 | library: use `addr_of!` | Pavel Grigorenko | -3/+3 |
| 2024-02-22 | Fix example. | Markus Reiter | -3/+4 |
| 2024-02-22 | Use generic `NonZero` everywhere in `core`. | Markus Reiter | -13/+13 |
| 2024-02-16 | Clarify the flatten specialization comment | Josh Stone | -2/+2 |
| 2024-02-16 | Specialize flattening iterators with only one inner item | Josh Stone | -12/+209 |
| 2024-02-15 | Replace `NonZero::<_>::new` with `NonZero::new`. | Markus Reiter | -24/+20 |
| 2024-02-15 | Use generic `NonZero` internally. | Markus Reiter | -129/+133 |
| 2024-02-12 | iterator.rs: remove "Basic usage" text | Tshepang Mbambo | -40/+0 |
| 2024-01-25 | use checked_add for upper bound | Yuri Astrakhan | -2/+2 |
| 2024-01-25 | Update library/core/src/iter/adapters/intersperse.rs | Yuri Astrakhan | -2/+2 |
| 2024-01-25 | fmt | Yuri Astrakhan | -1/+8 |
| 2024-01-25 | Postpone .next() call until iteration | Yuri Astrakhan | -29/+49 |