Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rollup of 5 pull requests #59760

Merged
merged 10 commits into from
Apr 7, 2019
Merged

Rollup of 5 pull requests #59760

merged 10 commits into from
Apr 7, 2019

Commits on Apr 5, 2019

  1. Configuration menu
    Copy the full SHA
    278ab19 View commit details
    Browse the repository at this point in the history
  2. Use for_each to extend collections

    This updates the `Extend` implementations to use `for_each` for many
    collections: `BinaryHeap`, `BTreeMap`, `BTreeSet`, `LinkedList`, `Path`,
    `TokenStream`, `VecDeque`, and `Wtf8Buf`.
    
    Folding with `for_each` enables better performance than a `for`-loop for
    some iterators, especially if they can just forward to internal
    iterators, like `Chain` and `FlatMap` do.
    cuviper committed Apr 5, 2019
    Configuration menu
    Copy the full SHA
    0730a01 View commit details
    Browse the repository at this point in the history

Commits on Apr 6, 2019

  1. Tiny docs fix

    tbu- committed Apr 6, 2019
    Configuration menu
    Copy the full SHA
    564771f View commit details
    Browse the repository at this point in the history
  2. Update books

    ehuss committed Apr 6, 2019
    Configuration menu
    Copy the full SHA
    965dc6b View commit details
    Browse the repository at this point in the history
  3. Update miri

    matthewjasper committed Apr 6, 2019
    Configuration menu
    Copy the full SHA
    acfe36e View commit details
    Browse the repository at this point in the history
  4. Rollup merge of rust-lang#59738 - flip1995:match_path_move, r=eddyb,M…

    …anishearth
    
    Move match_path from DefId to lint::LateContext
    
    cc rust-lang#59316 (comment)
    
    r? @eddyb
    Centril committed Apr 6, 2019
    Configuration menu
    Copy the full SHA
    ed45788 View commit details
    Browse the repository at this point in the history
  5. Rollup merge of rust-lang#59740 - cuviper:folded-extend, r=scottmcm

    Use for_each to extend collections
    
    This updates the `Extend` implementations to use `for_each` for many
    collections: `BinaryHeap`, `BTreeMap`, `BTreeSet`, `LinkedList`, `Path`,
    `TokenStream`, `VecDeque`, and `Wtf8Buf`.
    
    Folding with `for_each` enables better performance than a `for`-loop for
    some iterators, especially if they can just forward to internal
    iterators, like `Chain` and `FlatMap` do.
    Centril committed Apr 6, 2019
    Configuration menu
    Copy the full SHA
    76d818c View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    39d7292 View commit details
    Browse the repository at this point in the history
  7. Rollup merge of rust-lang#59754 - ehuss:update-books, r=frewsxcv

    Update books
    
    ## nomicon
    
    1 commits in f1ff93b66844493a7b03101c7df66ac958c62418..c02e0e7754a76886e55b976a3a4fac20100cd35d
    2019-02-26 13:37:28 -0500 to 2019-03-25 16:52:56 -0400
    - dropck: The drop order is now defined (rust-lang/nomicon#113)
    
    ## reference
    
    3 commits in 27ad493..98f90ff
    2019-03-26 02:06:15 +0100 to 2019-04-06 09:29:08 -0700
    - Document repr packed(N). (rust-lang/reference#553)
    - Fix broken link in glossary. (rust-lang/reference#558)
    - Typo fixes (rust-lang/reference#556)
    
    ## embedded-book
    
    2 commits in 07fd3880ea0874d82b1d9ed30ad3427ec98b4e8a..7989c723607ef5b13b57208022259e6c771e11d0
    2019-03-27 15:40:52 +0000 to 2019-04-04 12:14:37 +0000
    - fix rust-embedded/book#182  (rust-embedded/book#183)
    - Add openocd to list of installable packages  (rust-embedded/book#179)
    Centril committed Apr 6, 2019
    Configuration menu
    Copy the full SHA
    cd1165d View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    4601ff0 View commit details
    Browse the repository at this point in the history