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 3 pull requests #114226

Merged
merged 8 commits into from
Jul 30, 2023
Merged

Rollup of 3 pull requests #114226

merged 8 commits into from
Jul 30, 2023

Commits on Jul 29, 2023

  1. Configuration menu
    Copy the full SHA
    31bb3c0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    82bf232 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b7871e5 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    31fadf6 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    4b58ae0 View commit details
    Browse the repository at this point in the history
  6. Rollup merge of rust-lang#114129 - GuillaumeGomez:rustdoc-cleanup, r=…

    …notriddle
    
    Rustdoc small cleanups
    
    Each commit does some little cleanups:
    
     * We had some `Res` comparisons in multiple places (and still do, but unless we use a macro, it's not possible to "merge" any further) so I moved it into a function.
     * It was weird to have some utils function used everywhere in `visit_ast` so I instead moved it into `clean/utils.rs`.
     * In HTML rendering, we had some write "issues":
       * Multiple calls that could be merged into one.
       * Some `write!` that could be `write_str`.
       * We didn't use the new `format!` args much.
    
    r? `@notriddle`
    matthiaskrgr authored Jul 29, 2023
    Configuration menu
    Copy the full SHA
    fa94851 View commit details
    Browse the repository at this point in the history
  7. Rollup merge of rust-lang#114152 - ttsugriy:master, r=WaffleLapkin

    [rustc][data_structures] Simplify binary_search_slice.
    
    Instead of using `binary_search_by_key`, it's possible to use `partition_point` to find the lower bound. This avoids the need to locate the leftmost matching entry separately.
    
    It's also possible to use `partition_point` to find the upper bound, so I plan to send a separate PR for your consideration.
    matthiaskrgr authored Jul 29, 2023
    Configuration menu
    Copy the full SHA
    b889598 View commit details
    Browse the repository at this point in the history
  8. Rollup merge of rust-lang#114222 - compiler-errors:lazy-type-alias-is…

    …-incomplete, r=oli-obk
    
    Mark `lazy_type_alias` as incomplete
    
    This feature is very not complete: https://github.com/rust-lang/rust/issues?q=is%3Aissue+is%3Aopen+label%3AF-lazy_type_alias
    
    r? types
    matthiaskrgr authored Jul 29, 2023
    Configuration menu
    Copy the full SHA
    d4926b1 View commit details
    Browse the repository at this point in the history