| Age | Commit message (Expand) | Author | Lines |
| 2021-06-14 | Revert "implement TrustedRandomAccess for Take iterator adapter" | The8472 | -22/+1 |
| 2021-05-22 | remove InPlaceIterable marker from Peekable due to unsoundness | The8472 | -4/+1 |
| 2021-04-29 | Drop alias `reduce` for `fold` - we have a `reduce` function | Josh Triplett | -1/+0 |
| 2021-04-25 | Auto merge of #84147 - cuviper:array-method-dispatch, r=nikomatsakis,m-ou-se | bors | -0/+1 |
| 2021-04-24 | Rollup merge of #84489 - amorison:issue-83969-fix, r=yaahc | Yuki Okushi | -0/+5 |
| 2021-04-24 | Rollup merge of #83990 - the8472:take-trusted-len, r=dtolnay | Yuki Okushi | -1/+22 |
| 2021-04-24 | Rollup merge of #80805 - camelid:iter-by_ref-example, r=steveklabnik | Yuki Okushi | -23/+8 |
| 2021-04-23 | Mention FusedIterator case in Iterator::fuse doc | Adrien Morison | -0/+5 |
| 2021-04-21 | Replace all `fmt.pad` with `debug_struct` | Christiaan Dirkx | -1/+1 |
| 2021-04-16 | Skip into_iter() for arrays before 2021 | Josh Stone | -0/+1 |
| 2021-04-08 | implement TrustedRandomAccess for Take iterator adapter | The8472 | -1/+22 |
| 2021-04-07 | Update library/core/src/iter/traits/iterator.rs | lukaslueg | -1/+1 |
| 2021-04-07 | Update library/core/src/iter/traits/iterator.rs | lukaslueg | -1/+1 |
| 2021-04-06 | Merge branch 'master' into stab_peek_mut | lukaslueg | -5/+65 |
| 2021-04-06 | Update library/core/src/iter/adapters/peekable.rs | lukaslueg | -1/+1 |
| 2021-04-04 | Rollup merge of #81619 - SkiFire13:resultshunt-inplace, r=the8472 | Dylan DPC | -0/+23 |
| 2021-04-02 | Auto merge of #80965 - camelid:rename-doc-spotlight, r=jyn514 | bors | -1/+2 |
| 2021-03-27 | Rollup merge of #82917 - cuviper:iter-zip, r=m-ou-se | Dylan DPC | -2/+38 |
| 2021-03-27 | Add the tracking issue for `#![feature(iter_zip)]` | Josh Stone | -3/+3 |
| 2021-03-26 | update array missing `IntoIterator` msg | lcnr | -2/+2 |
| 2021-03-26 | Stabilize `peekable_peek_mut` | Lukas Lueg | -14/+35 |
| 2021-03-26 | Add function core::iter::zip | Josh Stone | -2/+38 |
| 2021-03-22 | Rollup merge of #83272 - kornelski:takedocs, r=dtolnay | Dylan DPC | -2/+13 |
| 2021-03-21 | implement TrustedRandomAccess for Ranges over int types | The8472 | -1/+42 |
| 2021-03-20 | Remove redundant second example | Camelid | -28/+0 |
| 2021-03-19 | Rollup merge of #82570 - WaffleLapkin:split_whitespace_as_str, r=m-ou-se | Dylan DPC | -2/+4 |
| 2021-03-18 | Expand documentation of Iterator::take and skip | Kornel | -2/+13 |
| 2021-03-18 | Fix typo/inaccuracy in the documentation of Iterator::skip_while | Frank Steffahn | -1/+1 |
| 2021-03-15 | Rename `#[doc(spotlight)]` to `#[doc(notable_trait)]` | Camelid | -1/+2 |
| 2021-03-13 | Add `reverse` search alias for Iterator::rev() | Sebastian Widua | -0/+1 |
| 2021-03-05 | Prevent Zip specialization from calling __iterator_get_unchecked twice with t... | Giacomo Stevanato | -4/+9 |
| 2021-03-05 | Rollup merge of #82289 - SkiFire13:fix-issue-82282, r=m-ou-se | Mara | -1/+2 |
| 2021-03-05 | Rollup merge of #81939 - kper:fixing-81584-allocate-in-iter, r=davidtwco | Mara | -0/+1 |
| 2021-03-03 | Remove useless comparison since now self.index <= self.len is an invariant | Giacomo Stevanato | -1/+1 |
| 2021-03-03 | Increment self.len in specialized ZipImpl to avoid underflow in size_hint | Giacomo Stevanato | -0/+1 |
| 2021-03-02 | Auto merge of #82043 - tmiasko:may-have-side-effect, r=kennytm | bors | -32/+15 |
| 2021-02-27 | Add `as_str` method for split whitespace str iterators | Waffle | -2/+4 |
| 2021-02-25 | Auto merge of #82162 - cuviper:flat-fold, r=Mark-Simulacrum | bors | -20/+35 |
| 2021-02-24 | Add suggestion for iterators in iterators | Kevin Per | -0/+1 |
| 2021-02-22 | Auto merge of #81732 - m-ou-se:inherit-overflow-checks, r=Mark-Simulacrum | bors | -38/+65 |
| 2021-02-17 | Rollup merge of #82198 - SkiFire13:optimize-iter-is-sorted, r=sfackler | Guillaume Gomez | -9/+16 |
| 2021-02-16 | Optimize Iterator::is_sorted_by by using Iterator::all for internal iteration | Giacomo Stevanato | -9/+16 |
| 2021-02-15 | Expand FlattenCompat folds | Josh Stone | -20/+35 |
| 2021-02-15 | Turn may_have_side_effect into an associated constant | Tomasz Miąsko | -32/+15 |
| 2021-02-14 | Use `#[rustc_inherit_overflow_checks]` instead of Add::add etc. | Mara Bos | -38/+65 |
| 2021-02-13 | Add basic usage example | Camelid | -0/+15 |
| 2021-02-12 | Rollup merge of #81741 - sdroege:zip-trusted-random-access-specialization-pan... | Dylan DPC | -3/+4 |
| 2021-02-09 | Rollup merge of #81697 - xfix:every-doc-alias, r=Mark-Simulacrum | Dylan DPC | -0/+1 |
| 2021-02-08 | Rollup merge of #81840 - ibraheemdev:patch-1, r=dtolnay | Mara Bos | -0/+1 |
| 2021-02-07 | Better line grouping | Camelid | -2/+2 |