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

Tracking Issue for #![feature(const_slice_first_last)] #83570

Open
2 of 3 tasks
a1phyr opened this issue Mar 27, 2021 · 1 comment
Open
2 of 3 tasks

Tracking Issue for #![feature(const_slice_first_last)] #83570

a1phyr opened this issue Mar 27, 2021 · 1 comment
Labels
C-tracking-issue Category: A tracking issue for an RFC or an unstable feature. T-libs-api Relevant to the library API team, which will review and decide on the PR/issue.

Comments

@a1phyr
Copy link
Contributor

a1phyr commented Mar 27, 2021

This is a tracking issue for #![feature(const_slice_first_last)].

New const functions are:

  • slice::first
  • slice::split_first
  • slice::last
  • slice::split_last

Blocking on #![feature(const_mut_refs)]:

  • slice::first_mut
  • slice::split_first_mut
  • slice::last_mut
  • slice::split_last_mut

Steps

@a1phyr a1phyr added C-tracking-issue Category: A tracking issue for an RFC or an unstable feature. T-libs-api Relevant to the library API team, which will review and decide on the PR/issue. labels Mar 27, 2021
Dylan-DPC-zz pushed a commit to Dylan-DPC-zz/rust that referenced this issue Mar 30, 2021
…st, r=dtolnay

Constantify some slice methods

Tracking issue: rust-lang#83570

This PR constantifies the following functions under feature `const_slice_first_last`:
- `slice::first`
- `slice::split_first`
- `slice::last`
- `slice::split_last`

Blocking on `#![feature(const_mut_refs)]`:
- `slice::first_mut`
- `slice::split_first_mut`
- `slice::last_mut`
- `slice::split_last_mut`
@jhpratt
Copy link
Member

jhpratt commented Jun 24, 2021

Partial stabilization up as #86593.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C-tracking-issue Category: A tracking issue for an RFC or an unstable feature. T-libs-api Relevant to the library API team, which will review and decide on the PR/issue.
Projects
None yet
Development

No branches or pull requests

2 participants