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

Merged
merged 3 commits into from
Oct 12, 2024

Commits on Oct 12, 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 12, 2024
    Configuration menu
    Copy the full SHA
    9a52300 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 12, 2024
    Configuration menu
    Copy the full SHA
    ddc367d 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 12, 2024
    Configuration menu
    Copy the full SHA
    187c8b0 View commit details
    Browse the repository at this point in the history