| Age | Commit message (Expand) | Author | Lines |
| 2023-01-24 | Set version placeholders to 1.68 | Mark Rousskov | -2/+2 |
| 2023-01-14 | Rollup merge of #106860 - anden3:doc-double-spaces, r=Dylan-DPC | Matthias Krüger | -1/+1 |
| 2023-01-14 | Rollup merge of #105526 - Xiretza:iter-from-generator-derive, r=scottmcm | Matthias Krüger | -4/+19 |
| 2023-01-14 | Remove various double spaces in source comments. | André Vennberg | -1/+1 |
| 2023-01-12 | add note for float iterator | Petar Dambovaliev | -0/+5 |
| 2023-01-10 | Rollup merge of #105034 - HintringerFabian:improve_iterator_flatten_doc, r=cu... | Yuki Okushi | -0/+12 |
| 2023-01-09 | Relocate changes | Fabian Hintringer | -12/+12 |
| 2023-01-08 | Rollup merge of #104163 - H4x5:once-repeat-with-debug, r=dtolnay | Michael Goulet | -2/+22 |
| 2023-01-07 | Don't derive Debug for `OnceWith` & `RepeatWith` | Sky | -2/+22 |
| 2023-01-07 | Change to immutable borrow when cloning element of RepeatN | Folyd | -1/+1 |
| 2022-12-30 | Rollup merge of #99244 - gthb:doc-improve-iterator-scan, r=m-ou-se | Matthias Krüger | -6/+11 |
| 2022-12-28 | Rollup merge of #106161 - meithecatte:iter-find-position, r=Mark-Simulacrum | Matthias Krüger | -0/+3 |
| 2022-12-28 | Rollup merge of #106172 - estebank:suggest-impl-trait, r=compiler-errors | Matthias Krüger | -0/+1 |
| 2022-12-28 | Rollup merge of #103945 - H4x5:remove-iter-empty-hack, r=compiler-errors | fee1-dead | -6/+1 |
| 2022-12-27 | Fix a formatting error | RetroSeven | -1/+1 |
| 2022-12-26 | Suggest `impl Iterator` when possible for `_` return type | Esteban Küber | -0/+1 |
| 2022-12-26 | Iterator::find: link to Iterator::position in docs for discoverability | Maja Kądziołka | -0/+3 |
| 2022-12-15 | doc: Fix a few small issues | Hannes Körber | -1/+1 |
| 2022-12-13 | Suggest `collect`ing into `Vec<_>` | Esteban Küber | -0/+1 |
| 2022-12-13 | Add result example + rewording | Fabian Hintringer | -4/+8 |
| 2022-12-10 | libcore: make result of iter::from_generator Clone | Xiretza | -0/+1 |
| 2022-12-10 | libcore: make result type of iter::from_generator concrete | Xiretza | -4/+18 |
| 2022-12-08 | Add `rustc_on_unimplemented` to `Sum` and `Product` trait. | Nixon Enraght-Moony | -0/+8 |
| 2022-12-05 | fix dupe word typos | Rageking8 | -1/+1 |
| 2022-11-28 | Add example for iterator_flatten | Fabian Hintringer | -0/+8 |
| 2022-11-24 | Tune RepeatWith::try_fold and Take::for_each and Vec::extend_trusted | Scott McMurray | -1/+37 |
| 2022-11-18 | Hide the items while waiting for the ACP | Scott McMurray | -10/+4 |
| 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 |