| Age | Commit message (Expand) | Author | Lines |
| 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 |
| 2022-08-01 | Add `Iterator::array_chunks()` | Ross MacArthur | -0/+221 |
| 2022-07-18 | Add note to test about `Unfuse` | Tim Vermeulen | -0/+3 |
| 2022-07-18 | Fix `Skip::next` for non-fused inner iterators | Tim Vermeulen | -0/+8 |
| 2022-06-21 | Add `Iterator::next_chunk` | Ross MacArthur | -0/+9 |
| 2022-05-29 | Use Box::new() instead of box syntax in core tests | est31 | -1/+2 |
| 2022-03-18 | Rollup merge of #94115 - scottmcm:iter-process-by-ref, r=yaahc | Matthias Krüger | -0/+24 |
| 2022-03-13 | Auto merge of #94738 - Urgau:rustbuild-check-cfg-values, r=Mark-Simulacrum | bors | -2/+0 |
| 2022-03-10 | Let `try_collect` take advantage of `try_fold` overrides | Scott McMurray | -0/+24 |
| 2022-03-09 | Remove unexpected #[cfg(target_pointer_width = "8")] in tests | Loïc BRANSTETT | -2/+0 |
| 2022-02-20 | Add collect_into | fren_gor | -0/+8 |
| 2022-02-16 | Add a `try_collect()` helper method to `Iterator` | Arthur Lafrance | -0/+46 |
| 2022-02-02 | add tests | tamaron | -0/+8 |
| 2022-01-09 | eplace usages of vec![].into_iter with [].into_iter | Lucas Kent | -10/+10 |
| 2021-12-04 | Use IntoIterator for array impl everywhere. | Mara Bos | -6/+5 |
| 2021-12-04 | Add a `try_reduce` method to the Iterator trait | kit | -0/+28 |
| 2021-11-19 | Fix Iterator::advance_by contract inconsistency | The8472 | -0/+47 |
| 2021-09-30 | implement advance_(back_)_by on more iterators | The8472 | -0/+40 |
| 2021-07-30 | Consistent spelling of "adapter" in the standard library | Frank Steffahn | -1/+1 |
| 2021-07-16 | implement ConstSizeIntoIterator for &[T;N] in addition to [T;N] | The8472 | -0/+16 |
| 2021-07-15 | implement TrustedLen for Flatten/FlatMap if the U: IntoIterator == [T; N] | The8472 | -0/+24 |
| 2021-06-20 | disable test on platforms that don't support unwinding | The8472 | -2/+4 |
| 2021-06-19 | fix panic-safety in specialized Zip::next_back | The8472 | -0/+25 |
| 2021-06-02 | Update expressions where we can use array's IntoIterator implementation | Muhammad Mominul Huque | -3/+1 |
| 2021-03-14 | Remove Option::{unwrap_none, expect_none}. | Mara Bos | -6/+6 |
| 2021-03-05 | Add relevant test | Giacomo Stevanato | -0/+23 |
| 2021-03-05 | Rollup merge of #82289 - SkiFire13:fix-issue-82282, r=m-ou-se | Mara | -0/+20 |
| 2021-03-03 | Add test for underflow in specialized Zip's size_hint | Giacomo Stevanato | -0/+20 |
| 2021-03-03 | Fix core tests | Ryan Levick | -2/+2 |
| 2021-01-23 | Improve flatten-fuse tests | Giacomo Stevanato | -0/+17 |
| 2021-01-22 | library/core/tests/iter documentation and cleanup | Daniel Conley | -7/+37 |
| 2021-01-22 | library/core/tests/iter rearrange & add back missed doc comments | Daniel Conley | -270/+274 |
| 2021-01-22 | library/core/test/iter add newlines between tests | Daniel Conley | -1/+170 |
| 2021-01-21 | library/core/test/iter.rs split attempt 2 | Daniel Conley | -0/+3574 |