-
Notifications
You must be signed in to change notification settings - Fork 13.6k
Open
Labels
A-raw-pointersArea: raw pointers, MaybeUninit, NonNullArea: raw pointers, MaybeUninit, NonNullA-sliceArea: `[T]`Area: `[T]`C-tracking-issueCategory: An issue tracking the progress of sth. like the implementation of an RFCCategory: An issue tracking the progress of sth. like the implementation of an RFCT-libs-apiRelevant to the library API team, which will review and decide on the PR/issue.Relevant to the library API team, which will review and decide on the PR/issue.
Description
The feature gate for the issue is #![feature(raw_slice_split)]
.
This is a tracking issue for the split_at_mut
method on raw slice pointers
Public API
impl<T> *mut [T] {
pub unsafe fn split_at_mut(self, mid: usize) -> (*mut [T], *mut [T]);
pub unsafe fn split_at_mut_unchecked(self, mid: usize) -> (*mut [T], *mut [T]);
}
Steps / History
- Implementation: Additional
*mut [T]
methods #95594 - Final comment period (FCP)
- Stabilization PR
Unresolved Questions
- None yet.
kornelski
Metadata
Metadata
Assignees
Labels
A-raw-pointersArea: raw pointers, MaybeUninit, NonNullArea: raw pointers, MaybeUninit, NonNullA-sliceArea: `[T]`Area: `[T]`C-tracking-issueCategory: An issue tracking the progress of sth. like the implementation of an RFCCategory: An issue tracking the progress of sth. like the implementation of an RFCT-libs-apiRelevant to the library API team, which will review and decide on the PR/issue.Relevant to the library API team, which will review and decide on the PR/issue.