| Age | Commit message (Expand) | Author | Lines |
| 2024-10-23 | "innermost", "outermost", "leftmost", and "rightmost" don't need hyphens | Josh Triplett | -1/+1 |
| 2024-09-25 | Use `&raw` in the standard library | Josh Stone | -2/+1 |
| 2024-09-22 | Reformat using the new identifier sorting from rustfmt | Michael Goulet | -7/+7 |
| 2024-09-14 | Rollup merge of #130053 - glowcoil:next_if-docs, r=jhpratt | Stuart Cook | -2/+2 |
| 2024-09-06 | fix doc comments for Peekable::next_if(_eq) | glowcoil | -2/+2 |
| 2024-09-03 | replace placeholder version | Boxy | -3/+3 |
| 2023-01-16 | Implement DoubleEnded and ExactSize for Take<Repeat> and Take<RepeatWith> | Michal Nazarewicz | -0/+57 |
| 2024-07-29 | Reformat `use` declarations. | Nicholas Nethercote | -77/+62 |
| 2024-07-26 | Fix doc nits | John Arundel | -3/+3 |
| 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-04 | Add function `core::iter::chain` | Ross MacArthur | -2/+38 |
| 2024-05-08 | Use generic `NonZero`. | Markus Reiter | -5/+5 |
| 2024-04-25 | remove trivial bounds | lcnr | -13/+7 |
| 2024-04-23 | Add diagnostic item for std::iter::Enumerate | Christopher B. Speir | -0/+1 |
| 2024-04-18 | Rollup merge of #123406 - krtab:fix_remainder_iterchunk, r=scottmcm | Jubilee | -1/+14 |
| 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-03-25 | Import the 2021 prelude in the core crate | Daniel Paoliello | -1/+0 |
| 2024-02-24 | library: use `addr_of!` | Pavel Grigorenko | -3/+3 |
| 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 | -17/+13 |
| 2024-02-15 | Use generic `NonZero` internally. | Markus Reiter | -96/+100 |
| 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 |
| 2024-01-25 | Boost intersperse(_with) performance | Yuri Astrakhan | -52/+74 |
| 2024-01-21 | Auto merge of #85528 - the8472:iter-markers, r=dtolnay | bors | -12/+105 |
| 2024-01-20 | Rollup merge of #113142 - the8472:opt-cstr-display, r=Mark-Simulacrum | Matthias Krüger | -0/+16 |
| 2024-01-10 | Implement in-place iteratation markers for iter::{Copied, Cloned} | The8472 | -4/+45 |
| 2024-01-10 | implement TrustedRandomAccess and TrustedLen for Skip | The8472 | -1/+51 |
| 2024-01-10 | implement TrustedLen for StepBy | The8472 | -7/+9 |
| 2023-12-10 | remove redundant imports | surechen | -9/+8 |
| 2023-11-28 | Auto merge of #110353 - the8472:in-place-flatten-chunks, r=cuviper | bors | -39/+285 |
| 2023-11-18 | Auto merge of #117525 - GKFX:remove_option_payload_ptr, r=petrochenkov | bors | -2/+4 |
| 2023-11-18 | Update based on petrochenkov's review | George Bateman | -3/+4 |
| 2023-11-17 | Rollup merge of #117549 - DaniPopes:more-copied, r=b-naber | Matthias Krüger | -1/+1 |
| 2023-11-16 | Remove option_payload_ptr; redundant to offset_of | George Bateman | -1/+2 |
| 2023-11-15 | Re-format code with new rustfmt | Mark Rousskov | -5/+1 |
| 2023-11-03 | library: use `copied` instead of manual `map` | DaniPopes | -1/+1 |
| 2023-10-15 | Auto merge of #115515 - the8472:zip-for-arrays, r=scottmcm | bors | -0/+90 |
| 2023-10-06 | optimize zipping over array iterators | The 8472 | -0/+90 |
| 2023-10-05 | Add more diagnostic items for clippy | Jason Newcomb | -0/+1 |
| 2023-09-03 | support in-place collecting additional FlatMap shapes | The 8472 | -15/+59 |
| 2023-09-03 | Expand in-place iteration specialization to Flatten, FlatMap and ArrayChunks | The 8472 | -39/+241 |
| 2023-08-28 | reduce indirection in for_each specialization | The 8472 | -7/+6 |