| Age | Commit message (Expand) | Author | Lines |
| 2025-01-26 | Put all coretests in a separate crate | bjorn3 | -5167/+0 |
| 2024-12-26 | Impl FromIterator for tuples with arity 1-12 | Sebastian Hahn | -0/+12 |
| 2024-12-24 | chore: fix typos | oliveredget | -1/+1 |
| 2024-12-06 | Rollup merge of #132187 - shahn:extend_more_tuples, r=dtolnay | Matthias Krüger | -0/+13 |
| 2024-11-21 | distinguish overflow and unimplemented in Step::steps_between | michirakara | -12/+23 |
| 2024-10-31 | Add a `collect_into` tuple test case | Sebastian Hahn | -0/+13 |
| 2024-09-22 | Reformat using the new identifier sorting from rustfmt | Michael Goulet | -5/+6 |
| 2024-09-09 | `RepeatN`: use MaybeUninit | Deadbeef | -0/+24 |
| 2023-01-16 | Implement DoubleEnded and ExactSize for Take<Repeat> and Take<RepeatWith> | Michal Nazarewicz | -0/+90 |
| 2024-07-29 | Reformat `use` declarations. | Nicholas Nethercote | -10/+17 |
| 2024-06-25 | regression test for leaks in the the Filter::next_chunk implementation | The 8472 | -0/+13 |
| 2024-06-20 | Add blank lines after module-level `//!` comments. | Nicholas Nethercote | -0/+1 |
| 2024-06-04 | Add function `core::iter::chain` | Ross MacArthur | -0/+8 |
| 2024-03-20 | step cfgs | Mark Rousskov | -1/+1 |
| 2024-03-14 | fix unsoundness in Step::forward_unchecked for signed integers | The 8472 | -0/+5 |
| 2024-02-25 | Auto merge of #120393 - Urgau:rfc3373-non-local-defs, r=WaffleLapkin | bors | -0/+1 |
| 2024-02-17 | Allow newly added non_local_definitions in std | Urgau | -0/+1 |
| 2024-02-16 | Specialize flattening iterators with only one inner item | Josh Stone | -0/+66 |
| 2024-02-15 | Replace `NonZero::<_>::new` with `NonZero::new`. | Markus Reiter | -52/+28 |
| 2024-02-15 | Use generic `NonZero` internally. | Markus Reiter | -35/+47 |
| 2024-01-21 | Auto merge of #85528 - the8472:iter-markers, r=dtolnay | bors | -2/+15 |
| 2024-01-21 | Rollup merge of #118811 - EbbDrop:is-sorted-by-bool, r=Mark-Simulacrum | Nadrieril | -2/+1 |
| 2024-01-20 | Use bool instead of PartiolOrd in is_sorted_by | EbbDrop | -2/+1 |
| 2024-01-11 | apply fmt | klensy | -21/+35 |
| 2024-01-10 | implement TrustedLen for StepBy | The8472 | -2/+15 |
| 2023-12-10 | remove redundant imports | surechen | -3/+1 |
| 2023-10-06 | optimize zipping over array iterators | The 8472 | -1/+5 |
| 2023-08-14 | Implement Step for AsciiChar | ltdk | -1/+17 |
| 2023-08-11 | Add Iterator::map_windows | Frank King | -0/+284 |
| 2023-07-21 | Auto merge of #112699 - bluebear94:mf/more-is-sorted-tests, r=cuviper | bors | -1/+30 |
| 2023-06-23 | Specialize StepBy<Range<{integer}>> | The 8472 | -0/+55 |
| 2023-06-16 | Add more comprehensive tests for is_sorted and friends | +merlan #flirora | -1/+30 |
| 2023-04-08 | Revert "Mark DoubleEndedIterator as #[const_trait] using rustc_do_not_const_c... | Deadbeef | -38/+0 |
| 2023-03-27 | replace advance_by returning usize with Result<(), NonZeroUsize> | The 8472 | -84/+106 |
| 2023-03-27 | Change advance(_back)_by to return `usize` instead of `Result<(), usize>` | The 8472 | -85/+89 |
| 2023-03-18 | Mark DoubleEndedIterator as #[const_trait] using rustc_do_not_const_check, im... | onestacked | -0/+38 |
| 2023-03-03 | Match unmatched backticks in library/ | est31 | -1/+1 |
| 2023-02-13 | Auto merge of #107634 - scottmcm:array-drain, r=thomcc | bors | -0/+3 |
| 2023-02-04 | Allow canonicalizing the `array::map` loop in trusted cases | Scott McMurray | -0/+3 |
| 2023-01-14 | Use associated items of `char` instead of freestanding items in `core::char` | Lukas Markeffsky | -1/+0 |
| 2022-11-24 | Tune RepeatWith::try_fold and Take::for_each and Vec::extend_trusted | Scott McMurray | -0/+20 |
| 2022-11-15 | `VecDeque::resize` should re-use the buffer in the passed-in element | Scott McMurray | -0/+49 |
| 2022-11-07 | simplification: do not process the ArrayChunks remainder in fold() | The 8472 | -1/+2 |
| 2022-08-24 | Rollup merge of #100220 - scottmcm:fix-by-ref-sized, r=joshtriplett | Matthias Krüger | -0/+21 |
| 2022-08-19 | Auto merge of #99541 - timvermeulen:flatten_cleanup, r=the8472 | bors | -0/+42 |
| 2022-08-14 | Properly forward `ByRefSized::fold` to the inner iterator | Scott McMurray | -0/+21 |
| 2022-08-14 | fix(iter::skip): Optimize `next` and `nth` implementations of `Skip` | austinabell | -0/+31 |
| 2022-08-05 | Move `fold` logic to `iter_fold` method and reuse it in `count` and `last` | Tim Vermeulen | -0/+42 |
| 2022-08-01 | Remove incorrect impl `TrustedLen` for `ArrayChunks` | Maybe Waffle | -1/+1 |
| 2022-08-01 | Use `array::IntoIter` for the `ArrayChunks` remainder | Ross MacArthur | -24/+5 |