-
Notifications
You must be signed in to change notification settings - Fork 13.7k
Closed as not planned
Labels
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
Feature gate: #![feature(array_try_from_slice)]
This is a tracking issue for adding the try_from_slice
constructor to core::array
.
Public API
// core::array
pub const fn try_from_slice<T, const N: usize>(slice: &[T]) -> Result<[T; N], TryFromSliceError>
where
T: Copy;
Steps / History
- ACP: #496
- Implementation: Add
core::array::try_from_slice
constructor. #133439 - Final comment period (FCP)
- Stabilization PR
Metadata
Metadata
Assignees
Labels
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.