Tracking Issue for *mut [T]::split_at_mut · Issue #95595 · rust-lang/rust (original) (raw)

Skip to content

Provide feedback

Saved searches

Use saved searches to filter your results more quickly

Sign up

Appearance settings

@the8472

Description

@the8472

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 *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

Unresolved Questions