-
Notifications
You must be signed in to change notification settings - Fork 13.6k
Open
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(string_into_chars)]
This is a tracking issue for:
String::into_chars
Public API
impl String {
pub fn into_chars(self) -> IntoChars {
IntoChars { bytes: self.into_bytes().into_iter() }
}
}
impl Iterator for IntoChars {
type Item = char;
}
Steps / History
- ACP: Implement
into_chars
forString
libs-team#268 - Implementation: Impl String::into_chars #133057
- Final comment period (FCP)1
- Stabilization PR
Unresolved Questions
- None yet.
Footnotes
thaliaarchi, cxw620, ClayenKitten, RoDmitry and ju5tevg3niyebkalderon
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.