| Age | Commit message (Expand) | Author | Lines |
| 2023-03-27 | replace advance_by returning usize with Result<(), NonZeroUsize> | The 8472 | -69/+92 |
| 2023-03-27 | Change advance(_back)_by to return `usize` instead of `Result<(), usize>` | The 8472 | -124/+86 |
| 2023-02-28 | relax bounds on iterator adapter Default impls | The 8472 | -25/+6 |
| 2023-02-28 | rewrite iterator `Default` tests as doctests | The 8472 | -0/+59 |
| 2023-02-28 | Implement Default for some alloc/core iterators | The 8472 | -0/+71 |
| 2023-02-04 | Allow canonicalizing the `array::map` loop in trusted cases | Scott McMurray | -13/+40 |
| 2023-02-03 | Replace `ConstFnMutClosure` with const closures | Deadbeef | -18/+7 |
| 2023-01-27 | Remove `ControlFlow::{BREAK, CONTINUE}` | Scott McMurray | -3/+3 |
| 2022-11-24 | Tune RepeatWith::try_fold and Take::for_each and Vec::extend_trusted | Scott McMurray | -1/+20 |
| 2022-11-08 | document and improve array Guard type | The 8472 | -3/+5 |
| 2022-11-07 | simplification: do not process the ArrayChunks remainder in fold() | The 8472 | -18/+2 |
| 2022-11-07 | specialize iter::ArrayChunks::fold for TrustedRandomAccess iters | The 8472 | -3/+86 |
| 2022-10-19 | specialize slice_iter.copied().next_chunk() | The 8472 | -0/+74 |
| 2022-09-26 | Use a macro to not have to copy-paste `ConstFnMutClosure::new(&mut fold, Neve... | Scott McMurray | -88/+10 |
| 2022-09-23 | Constifed Try trait | onestacked | -11/+22 |
| 2022-08-24 | Rollup merge of #100220 - scottmcm:fix-by-ref-sized, r=joshtriplett | Matthias Krüger | -12/+17 |
| 2022-08-19 | Auto merge of #99541 - timvermeulen:flatten_cleanup, r=the8472 | bors | -137/+238 |
| 2022-08-14 | Properly forward `ByRefSized::fold` to the inner iterator | Scott McMurray | -12/+17 |
| 2022-08-14 | fix(iter::skip): Optimize `next` and `nth` implementations of `Skip` | austinabell | -8/+19 |
| 2022-08-12 | fill-in tracking issue for `feature(iter_array_chunks)` | Maybe Waffle | -7/+7 |
| 2022-08-12 | address review comments | Maybe Waffle | -6/+8 |
| 2022-08-05 | Move `rfold` logic into `iter_rfold` | Tim Vermeulen | -19/+35 |
| 2022-08-05 | Move `fold` logic to `iter_fold` method and reuse it in `count` and `last` | Tim Vermeulen | -16/+76 |
| 2022-08-05 | Move shared logic of `try_rfold` and `advance_back_by` into `iter_try_rfold` | Tim Vermeulen | -54/+65 |
| 2022-08-05 | Move shared logic of `try_fold` and `advance_by` into `iter_try_fold` | Tim Vermeulen | -52/+66 |
| 2022-08-02 | Use `next_chunk` in `ArrayChunks` impl | Maybe Waffle | -132/+37 |
| 2022-08-01 | Simplify `ArrayChunks::{,r}fold` impls | Maybe Waffle | -46/+4 |
| 2022-08-01 | Simplify `ArrayChunks::is_empty` | Maybe Waffle | -1/+1 |
| 2022-08-01 | Remove `Fuse` from `ArrayChunks` implementation | Maybe Waffle | -3/+3 |
| 2022-08-01 | Use `#[track_caller]` to make panic in `Iterator::array_chunks` nicer | Maybe Waffle | -0/+1 |
| 2022-08-01 | Remove incorrect impl `TrustedLen` for `ArrayChunks` | Maybe Waffle | -9/+2 |
| 2022-08-01 | Forward `ArrayChunks::next{,_back}` to `try_{for_each,rfold}` | Maybe Waffle | -42/+2 |
| 2022-08-01 | Remove `array::IntoIter::with_partial` -- an artifact of the past, once used ... | Maybe Waffle | -3/+4 |
| 2022-08-01 | Use `array::IntoIter` for the `ArrayChunks` remainder | Ross MacArthur | -79/+14 |
| 2022-08-01 | Add `Iterator::array_chunks()` | Ross MacArthur | -0/+431 |
| 2022-07-18 | Fix `Skip::next` for non-fused inner iterators | Tim Vermeulen | -1/+1 |
| 2022-06-22 | Refactor iter adapters with less macros | Cameron Steffen | -117/+56 |
| 2022-06-18 | Expose iter::ByRefSized as unstable feature and use it | Paolo Barbolini | -2/+7 |
| 2022-05-14 | Auto merge of #95602 - scottmcm:faster-array-intoiter-fold, r=the8472 | bors | -0/+40 |
| 2022-05-13 | Slap #[inline] on all the ByRefSized methods, per the8472's suggestion | Scott McMurray | -0/+11 |
| 2022-05-08 | Warn on unused doc(hidden) on trait impl items | León Orell Valerian Liehr | -6/+0 |
| 2022-05-02 | This aligns the inline attributes of existing `__iterator_get_unchecked` with... | The 8472 | -0/+4 |
| 2022-04-02 | Fix `array::IntoIter::fold` to use the optimized `Range::fold` | Scott McMurray | -0/+29 |
| 2022-03-21 | add module-level documentation for vec's in-place iteration | The8472 | -0/+5 |
| 2022-03-18 | Rollup merge of #94115 - scottmcm:iter-process-by-ref, r=yaahc | Matthias Krüger | -0/+45 |
| 2022-03-10 | Use implicit capture syntax in format_args | T-O-R-U-S | -2/+2 |
| 2022-03-10 | Let `try_collect` take advantage of `try_fold` overrides | Scott McMurray | -0/+45 |
| 2022-03-03 | Doc: Fix use of quote instead of backstick in Adapter::map. | Axel Viala | -1/+1 |
| 2022-02-07 | Change `ResultShunt` to be generic over `Try` | Scott McMurray | -40/+38 |
| 2022-01-11 | Auto merge of #92070 - rukai:replace_vec_into_iter_with_array_into_iter, r=Ma... | bors | -3/+3 |