| Age | Commit message (Expand) | Author | Lines |
| 2022-11-15 | `VecDeque::resize` should re-use the buffer in the passed-in element | Scott McMurray | -0/+207 |
| 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-11-03 | Remove `iter::Empty` hack | Sky | -6/+1 |
| 2022-10-29 | use consistent terminology | Tshepang Mbambo | -1/+1 |
| 2022-10-19 | specialize slice_iter.copied().next_chunk() | The 8472 | -0/+74 |
| 2022-10-14 | more dupe word typos | Rageking8 | -1/+1 |
| 2022-10-07 | Rollup merge of #102300 - scottmcm:simpler-fold-closures, r=Mark-Simulacrum | Dylan DPC | -114/+35 |
| 2022-10-04 | Only allow ~const bounds for traits with #[const_trait] | Oli Scherer | -1/+1 |
| 2022-09-29 | Improve example of Iterator::reduce | Guillaume Gomez | -14/+5 |
| 2022-09-26 | Use a macro to not have to copy-paste `ConstFnMutClosure::new(&mut fold, Neve... | Scott McMurray | -114/+35 |
| 2022-09-26 | Rollup merge of #102263 - GuillaumeGomez:iterator-rposition-example, r=thomcc | fee1-dead | -3/+3 |
| 2022-09-25 | Clarify Iterator::rposition code example | Guillaume Gomez | -3/+3 |
| 2022-09-24 | Rollup merge of #102186 - ink-feather-org:const_try_trait, r=fee1-dead | Matthias Krüger | -11/+22 |
| 2022-09-24 | Auto merge of #100845 - timvermeulen:iter_compare, r=scottmcm | bors | -62/+81 |
| 2022-09-23 | Constifed Try trait | onestacked | -11/+22 |
| 2022-09-16 | Add `const_trait`s | Deadbeef | -0/+1 |
| 2022-08-24 | Rollup merge of #100220 - scottmcm:fix-by-ref-sized, r=joshtriplett | Matthias Krüger | -12/+17 |
| 2022-08-21 | Use internal iteration in `Iterator::{cmp_by, partial_cmp_by, eq_by}` | Tim Vermeulen | -62/+81 |
| 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 | -9/+9 |
| 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/+2 |
| 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 | -81/+18 |
| 2022-08-01 | Add `Iterator::array_chunks()` | Ross MacArthur | -1/+474 |
| 2022-07-18 | Fix `Skip::next` for non-fused inner iterators | Tim Vermeulen | -1/+1 |
| 2022-07-14 | lint: remove unnecessary parentheses | Gunnlaugur Þór Briem | -1/+1 |
| 2022-07-14 | doc: clearer and more correct Iterator::scan | Gunnlaugur Þór Briem | -6/+11 |
| 2022-06-30 | clarify that ExactSizeIterator::len returns the remaining length | The 8472 | -5/+11 |
| 2022-06-28 | Rollup merge of #98430 - camsteffen:flatten-refactor, r=joshtriplett | Dylan DPC | -117/+56 |
| 2022-06-22 | Refactor iter adapters with less macros | Cameron Steffen | -117/+56 |
| 2022-06-21 | Add `Iterator::next_chunk` | Ross MacArthur | -0/+42 |
| 2022-06-18 | Expose iter::ByRefSized as unstable feature and use it | Paolo Barbolini | -3/+10 |
| 2022-06-08 | Suggest using `iter()` or `into_iter()` for `Vec` | Chayim Refael Friedman | -0/+4 |
| 2022-05-27 | libcore: Add `iter::from_generator` which is like `iter::from_fn`, but for co... | Vadim Petrochenkov | -0/+57 |
| 2022-05-14 | Auto merge of #95602 - scottmcm:faster-array-intoiter-fold, r=the8472 | bors | -0/+40 |