| 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-24 | Rollup merge of #83990 - the8472:take-trusted-len, r=dtolnay | Yuki Okushi | -1/+22 |
| 2021-04-08 | implement TrustedRandomAccess for Take iterator adapter | The8472 | -1/+22 |
| 2021-04-06 | Merge branch 'master' into stab_peek_mut | lukaslueg | -2/+59 |
| 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-03-27 | Add the tracking issue for `#![feature(iter_zip)]` | Josh Stone | -2/+2 |
| 2021-03-26 | Stabilize `peekable_peek_mut` | Lukas Lueg | -2/+1 |
| 2021-03-26 | Add function core::iter::zip | Josh Stone | -2/+36 |
| 2021-03-19 | Rollup merge of #82570 - WaffleLapkin:split_whitespace_as_str, r=m-ou-se | Dylan DPC | -2/+4 |
| 2021-03-05 | Prevent Zip specialization from calling __iterator_get_unchecked twice with t... | Giacomo Stevanato | -4/+9 |
| 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-22 | Auto merge of #81732 - m-ou-se:inherit-overflow-checks, r=Mark-Simulacrum | bors | -11/+12 |
| 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 | -11/+12 |
| 2021-02-12 | Rollup merge of #81741 - sdroege:zip-trusted-random-access-specialization-pan... | Dylan DPC | -3/+4 |
| 2021-02-07 | fix formatting of std::iter::Map | Ibraheem Ahmed | -0/+1 |
| 2021-02-06 | Rollup merge of #80011 - Stupremee:stabilize-peekable-next-if, r=dtolnay | Mara Bos | -5/+2 |
| 2021-02-05 | Bump peekable_next_if to rust 1.51.0 | David Tolnay | -2/+2 |
| 2021-02-04 | Increment `self.index` before calling `Iterator::self.a.__iterator_get_unchec... | Sebastian Dröge | -3/+4 |
| 2021-02-01 | Implement SourceIterator and InPlaceIterable for ResultShunt | Giacomo Stevanato | -0/+23 |
| 2021-02-01 | Implement `TrustedLen` for `iter::Fuse<I: TrustedLen>` | Sebastian Dröge | -1/+9 |
| 2021-02-01 | Add SAFETY comment for the `TrustedRandomAccess` impl of `iter::Fuse` | Sebastian Dröge | -0/+5 |
| 2021-01-23 | Manually fuse the inner iterator in FlattenCompat | Giacomo Stevanato | -2/+14 |
| 2021-01-23 | Auto merge of #80715 - JulianKnodt:skip_opt, r=nagisa | bors | -6/+4 |
| 2021-01-22 | Rollup merge of #81173 - lukaslueg:intersperse_docs, r=m-ou-se | Mara Bos | -6/+4 |
| 2021-01-21 | Auto merge of #81152 - lzutao:intersperse_fold, r=m-ou-se | bors | -3/+4 |
| 2021-01-21 | Expand docs on Iterator::intersperse | Lukas Lueg | -6/+4 |
| 2021-01-20 | Deprecate-in-future the constants superceded by RFC 2700 | bstrie | -1/+1 |
| 2021-01-19 | Stop `fold` at first None when iterator yield | Mara Bos | -0/+2 |
| 2021-01-19 | Fix intersperse_fold | Lzu Tao | -3/+2 |
| 2021-01-16 | Rollup merge of #80670 - the8472:fix-zip-trusted-random-access-composition, r... | Mara Bos | -0/+1 |
| 2021-01-14 | Rollup merge of #80567 - lukaslueg:intersperse_with, r=m-ou-se | Mara Bos | -22/+134 |
| 2021-01-13 | Improve Iterator::intersperse_ docs | Lukas Lueg | -2/+2 |
| 2021-01-13 | Add doc intralinks | Lukas Lueg | -0/+6 |
| 2021-01-08 | Clean up branching in skip | kadmin | -6/+4 |
| 2021-01-07 | Remove FIXME-notes | Lukas Lueg | -6/+0 |
| 2021-01-04 | doc -- list edit for consistency | oliver | -1/+1 |
| 2021-01-04 | TrustedRandomAaccess spec composes incorrectly for nested iter::Zips | The8472 | -0/+1 |
| 2020-12-31 | Add Iterator::intersperse_with | Lukas Lueg | -22/+134 |
| 2020-12-30 | Add tracking issue | Camelid | -3/+3 |
| 2020-12-30 | Add Iterator::intersperse | Jonas Schievink | -0/+80 |
| 2020-12-13 | bump rust version for peekable_next_if feature | Justus K | -2/+2 |
| 2020-12-13 | stabilize `peekable_next_if` | Justus K | -5/+2 |