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

Stabilize const ptr::write* and mem::replace #130954

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Commits on Oct 5, 2024

  1. library: Stabilize const_intrinsic_forget

    This is an implicit requirement of stabilizing `const_ptr_write`.
    
    Const-stabilizes the internal `core::intrinsics`:
    - `forget`
    workingjubilee committed Oct 5, 2024
    Configuration menu
    Copy the full SHA
    edf0dda View commit details
    Browse the repository at this point in the history
  2. library: Stabilize const_ptr_write

    Const-stabilizes:
    - `write`
    - `write_bytes`
    - `write_unaligned`
    
    In the following paths:
    - `core::ptr`
    - `core::ptr::NonNull`
    - pointer `<*mut T>`
    
    Const-stabilizes the internal `core::intrinsics`:
    - `write_bytes`
    - `write_via_move`
    workingjubilee committed Oct 5, 2024
    Configuration menu
    Copy the full SHA
    bbbfb28 View commit details
    Browse the repository at this point in the history
  3. library: Stabilize const_replace

    Depends on stabilizing `const_ptr_write`.
    
    Const-stabilizes:
    - `core::mem::replace`
    - `core::ptr::replace`
    workingjubilee committed Oct 5, 2024
    Configuration menu
    Copy the full SHA
    508d9cf View commit details
    Browse the repository at this point in the history