| Age | Commit message (Expand) | Author | Lines |
| 2020-07-14 | Auto merge of #73490 - CAD97:range-unchecked-stepping, r=Amanieu | bors | -12/+12 |
| 2020-07-05 | Fix spacing in Iterator fold doc | Ivan Tham | -2/+2 |
| 2020-06-30 | Deny unsafe ops in unsafe fns, part 6 | LeSeulArtichaut | -1/+0 |
| 2020-06-30 | Deny unsafe ops in unsafe fns, part 2 | LeSeulArtichaut | -16/+38 |
| 2020-06-19 | Refactor `try_find` a little | Josh Stone | -11/+18 |
| 2020-06-18 | Use step_unchecked more liberally | CAD97 | -12/+12 |
| 2020-06-14 | Fix iterator copied() documentation example code | Steve Heindel | -2/+2 |
| 2020-05-30 | Rollup merge of #72368 - CAD97:rangeto, r=dtolnay | Ralf Jung | -9/+1 |
| 2020-05-30 | Rollup merge of #72162 - cuviper:extend_one, r=Mark-Simulacrum | Yuki Okushi | -5/+26 |
| 2020-05-29 | Add extend_one tracking issue 72631 | Josh Stone | -2/+2 |
| 2020-05-29 | Use a canonical name for extend_reserve(additional) | Josh Stone | -1/+3 |
| 2020-05-29 | Add Extend::{extend_one,extend_reserve} | Josh Stone | -5/+24 |
| 2020-05-29 | Auto merge of #72756 - RalfJung:rollup-tbjmtx2, r=RalfJung | bors | -1/+73 |
| 2020-05-29 | Rollup merge of #72413 - CAD97:char-range, r=dtolnay | Ralf Jung | -1/+73 |
| 2020-05-29 | Rollup merge of #72310 - jyn514:peekable-next-if, r=dtolnay | Dylan DPC | -0/+63 |
| 2020-05-29 | Clarify the documentation of take | Alexis Bourget | -0/+11 |
| 2020-05-28 | FIx off-by-one in char::steps_between | CAD97 | -1/+1 |
| 2020-05-26 | Add Peekable::next_if | Joshua Nelson | -0/+63 |
| 2020-05-26 | Add remark regarding DoubleEndedIterator | philipp | -0/+26 |
| 2020-05-21 | Add safety annotations in iter::range | CAD97 | -0/+4 |
| 2020-05-21 | Use Step::forward_unchecked in RangeInclusive::next | CAD97 | -1/+5 |
| 2020-05-21 | impl Step for char | CAD97 | -0/+64 |
| 2020-05-19 | Resolve overflow behavior for RangeFrom | CAD97 | -9/+1 |
| 2020-05-18 | Add some more `rfold` implementations. | Nicholas Nethercote | -0/+68 |
| 2020-05-18 | Tweak `partition`, `unzip`, `try_find`. | Nicholas Nethercote | -7/+7 |
| 2020-05-18 | Make `fold` standalone. | Nicholas Nethercote | -13/+124 |
| 2020-05-16 | Rollup merge of #72166 - nnethercote:simpler-slice-Iterator-methods, r=cuviper | Dylan DPC | -1/+1 |
| 2020-05-15 | Auto merge of #69659 - CAD97:step-rework-take-3, r=Amanieu | bors | -171/+411 |
| 2020-05-14 | improve step_integer_impls macro | CAD97 | -29/+6 |
| 2020-05-13 | Improve Step::forward/backward for optimization | CAD97 | -14/+12 |
| 2020-05-13 | Improve comments in iter::Step | CAD97 | -3/+3 |
| 2020-05-13 | Change `Iterator::nth` to use `self.next()` in a `while` loop. | Nicholas Nethercote | -1/+1 |
| 2020-04-26 | Use min_specialization in liballoc | Matthew Jasper | -0/+2 |
| 2020-04-25 | Bump rustfmt to most recently shipped | Mark Rousskov | -1/+1 |
| 2020-04-24 | Rollup merge of #71492 - LeSeulArtichaut:document-unsafe-2, r=Mark-Simulacrum | Dylan DPC | -2/+8 |
| 2020-04-24 | Document unsafety in `core::{panicking, alloc::layout, hint, iter::adapters::... | LeSeulArtichaut | -2/+8 |
| 2020-04-23 | Rollup merge of #71404 - cuviper:chain-unfused, r=scottmcm | Dylan DPC | -10/+22 |
| 2020-04-21 | Don't fuse Chain in its second iterator | Josh Stone | -10/+22 |
| 2020-04-20 | Stop accessing module level int consts via crate::<Ty> | Linus Färnstrand | -3/+0 |
| 2020-04-17 | Rollup merge of #71220 - cuviper:std_or_patterns, r=Mark-Simulacrum | Dylan DPC | -2/+2 |
| 2020-04-17 | Rollup merge of #70910 - rakshith-ravi:master, r=cuviper | Dylan DPC | -63/+244 |
| 2020-04-16 | Dogfood or_patterns in the standard library | Josh Stone | -2/+2 |
| 2020-04-16 | Inlined everything into a single trait and trait impl | Rakshith Ravi | -126/+141 |
| 2020-04-10 | Added comments. | Rakshith Ravi | -21/+16 |
| 2020-04-08 | Adjust Step::forward_checked docs for large types | CAD97 | -2/+5 |
| 2020-04-08 | Redesign the Step trait | CAD97 | -172/+434 |
| 2020-04-08 | Added FuseIteratorImpl, FustDoubleEndedIteratorImpl and FuseExactSizeIterator... | Rakshith Ravi | -79/+250 |
| 2020-04-07 | Avoid extra &mut in Chain::fold and try_fold | Josh Stone | -2/+2 |
| 2020-04-07 | Reduce callsites in Chain::last() | Josh Stone | -11/+10 |
| 2020-04-07 | Reduce callsites in Chain::count() | Josh Stone | -6/+9 |