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 4 pull requests #107949

Closed
wants to merge 8 commits into from

Commits on Jan 14, 2023

  1. Use associated items of char instead of freestanding items in `core…

    …::char`
    Lukas Markeffsky committed Jan 14, 2023
    Configuration menu
    Copy the full SHA
    76e216f View commit details
    Browse the repository at this point in the history

Commits on Feb 7, 2023

  1. refer to new home

    The module has since been made its own crate...
    see 2d75a33.
    tshepang committed Feb 7, 2023
    Configuration menu
    Copy the full SHA
    8d14502 View commit details
    Browse the repository at this point in the history

Commits on Feb 11, 2023

  1. Configuration menu
    Copy the full SHA
    d505c5a View commit details
    Browse the repository at this point in the history

Commits on Feb 12, 2023

  1. Document PointerLike

    compiler-errors committed Feb 12, 2023
    Configuration menu
    Copy the full SHA
    cca82fd View commit details
    Browse the repository at this point in the history
  2. Rollup merge of rust-lang#105671 - lukas-code:depreciate-char, r=scot…

    …tmcm
    
    Use associated items of `char` instead of freestanding items in `core::char`
    
    The associated functions and constants on `char` have been stable since 1.52 and the freestanding items have soft-deprecated since 1.62 (rust-lang#95566). This PR ~~marks them as "deprecated in future", similar to the integer and floating point modules (`core::{i32, f32}` etc)~~ replaces all uses of `core::char::*` with `char::*` to prepare for future deprecation of `core::char::*`.
    matthiaskrgr authored Feb 12, 2023
    Configuration menu
    Copy the full SHA
    ad8b2d8 View commit details
    Browse the repository at this point in the history
  3. Rollup merge of rust-lang#107748 - tshepang:renamed, r=cuviper

    refer to new home
    
    The module has since been made its own crate...
    see 2d75a33.
    matthiaskrgr authored Feb 12, 2023
    Configuration menu
    Copy the full SHA
    8b56536 View commit details
    Browse the repository at this point in the history
  4. Rollup merge of rust-lang#107930 - GuillaumeGomez:js-func-improvement…

    …, r=notriddle
    
    Improve JS function itemTypeFromName code a bit
    
    Very small code improvement replacing a `for` loop with `findIndex` method.
    
    r? ``@notriddle``
    matthiaskrgr authored Feb 12, 2023
    Configuration menu
    Copy the full SHA
    426a195 View commit details
    Browse the repository at this point in the history
  5. Rollup merge of rust-lang#107943 - compiler-errors:document-pointer-l…

    …ike, r=jyn514
    
    Document `PointerLike`
    
    I forgot to document this, and even though it's currently more of an implementation detail, the old doc was kinda embarrassing 😅
    matthiaskrgr authored Feb 12, 2023
    Configuration menu
    Copy the full SHA
    6a62471 View commit details
    Browse the repository at this point in the history