| Age | Commit message (Expand) | Author | Lines |
| 2018-02-12 | core::iter::repeat_with: fix tests some more | Mazdak Farrokhzad | -5/+5 |
| 2018-02-12 | core::iter::repeat_with: fix tests | Mazdak Farrokhzad | -1/+3 |
| 2018-02-12 | core::iter::repeat_with: derive Copy, Clone, Debug | Mazdak Farrokhzad | -0/+1 |
| 2018-02-12 | core::iter::repeat_with: general fixes | Mazdak Farrokhzad | -0/+7 |
| 2018-02-12 | add core::iter::repeat_with | Mazdak Farrokhzad | -0/+148 |
| 2018-02-11 | Make primitive types docs relevant (unsigned) | Antoni Boucher | -735/+815 |
| 2018-02-11 | Make primitive types docs relevant | Guillaume Gomez | -937/+1016 |
| 2018-02-11 | Update ops range example to avoid confusion between indexes and values. | Jason Schein | -5/+5 |
| 2018-02-10 | Add the emptiness condition to the docs; add a PartialOrd example with NAN | Scott McMurray | -2/+24 |
| 2018-02-10 | Correct a few stability attributes | Oliver Middleton | -7/+7 |
| 2018-02-11 | Rollup merge of #47547 - varkor:infinite-iterators-warning-doc, r=frewsxcv | kennytm | -0/+18 |
| 2018-02-11 | Rollup merge of #48120 - matthiaskrgr:typos_src_1, r=alexcrichton | kennytm | -1/+1 |
| 2018-02-10 | fix typos in src/{bootstrap,ci,etc,lib{backtrace,core,fmt_macros}} | Matthias Krüger | -1/+1 |
| 2018-02-10 | Rollup merge of #48100 - Mark-Simulacrum:fetch-nand, r=alexcrichton | kennytm | -0/+61 |
| 2018-02-10 | Rollup merge of #48107 - matthiaskrgr:typo__substract_to_subtract, r=kennytm | kennytm | -2/+2 |
| 2018-02-10 | Rollup merge of #47790 - tinaun:patch-1, r=sfackler | kennytm | -1/+1 |
| 2018-02-09 | range_is_empty tracking issue is #48111 | Scott McMurray | -2/+2 |
| 2018-02-09 | Use is_empty in range iteration exhaustion tests | Scott McMurray | -9/+70 |
| 2018-02-10 | fix typo: substract -> subtract. | Matthias Krüger | -2/+2 |
| 2018-02-09 | Add fetch_nand. | Mark Simulacrum | -0/+61 |
| 2018-02-09 | Fix tidy | Scott McMurray | -1/+1 |
| 2018-02-09 | Add Range[Inclusive]::is_empty | Scott McMurray | -5/+62 |
| 2018-02-08 | New introduction and revised hash map explanation. | Martin Hoffmann | -30/+44 |
| 2018-02-08 | Auto merge of #48057 - scottmcm:less-match-more-compare, r=dtolnay | bors | -16/+31 |
| 2018-02-07 | Simplify RangeInclusive::next[_back] | Scott McMurray | -16/+31 |
| 2018-02-07 | update the builtin macro doc stubs | Michael Lamparski | -5/+20 |
| 2018-02-07 | Rollup merge of #47944 - oberien:unboundediterator-trustedlen, r=bluss | Manish Goregaokar | -2/+56 |
| 2018-02-07 | Rollup merge of #47631 - SimonSapin:nonnull, r=alexcrichton | Manish Goregaokar | -24/+63 |
| 2018-02-07 | Rollup merge of #47613 - estebank:rustc_on_unimplemented, r=nikomatsakis | Manish Goregaokar | -28/+68 |
| 2018-02-07 | libcore/libstd: fix commas in macro_rules! macros | Michael Lamparski | -2/+15 |
| 2018-02-07 | Rollup merge of #48012 - scottmcm:faster-rangeinclusive-fold, r=alexcrichton | kennytm | -1/+65 |
| 2018-02-06 | Rollup merge of #48003 - mbrubeck:docs, r=steveklabnik | kennytm | -3/+3 |
| 2018-02-04 | Override try_[r]fold for RangeInclusive | Scott McMurray | -1/+65 |
| 2018-02-04 | Fix info about generic impls in AsMut docs | Matt Brubeck | -3/+3 |
| 2018-02-05 | Rollup merge of #47892 - Badel2:const_type_id_of, r=oli-obk | kennytm | -0/+28 |
| 2018-02-04 | Document TrustedLen guarantees more explicitly | oberien | -2/+4 |
| 2018-02-04 | TrustedLen for Repeat / RangeFrom test cases | oberien | -0/+43 |
| 2018-02-04 | Implement TrustedLen for Take<Repeat> and Take<RangeFrom> | oberien | -0/+9 |
| 2018-02-03 | Rollup merge of #47973 - perlun:patch-1, r=dtolnay | kennytm | -1/+1 |
| 2018-02-02 | copy_nonoverlapping example: Fixed typo | Per Lundberg | -1/+1 |
| 2018-02-02 | Rollup merge of #47919 - varkor:to_degrees-precision, r=rkruppe Use constant ... | kennytm | -1/+6 |
| 2018-02-02 | Rollup merge of #46156 - SimonSapin:patch-14, r=withoutboats | kennytm | -0/+1 |
| 2018-02-01 | Remove cast suggestions | Esteban Küber | -72/+0 |
| 2018-02-01 | Add filter to detect local crates for rustc_on_unimplemented | Esteban Küber | -8/+18 |
| 2018-02-01 | Change rustc_on_unimplemented for Iterator and binops | Esteban Küber | -6/+3 |
| 2018-02-01 | Add filtering options to `rustc_on_unimplemented` | Esteban Küber | -20/+125 |
| 2018-02-01 | Turn `type_id` into a constant intrinsic | Badel2 | -0/+28 |
| 2018-02-01 | Use constant for 180/π in to_degrees | varkor | -1/+6 |
| 2018-02-01 | Rollup merge of #47552 - oberien:stepby-nth, r=dtolnay | kennytm | -0/+106 |
| 2018-01-31 | Rollup merge of #47840 - penpalperson:master, r=bluss | kennytm | -0/+3 |