Tracking Issue for String::into_chars
Open
Nobody has claimed this yet.
C-tracking-issue
T-libs
- Dominant language
- Rust
- Stars
- 119k
- Forks
- 16.1k
- PR merge metrics
- PR metrics pending
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: https://github.com/rust-lang/libs-team/issues/268
- Implementation: https://github.com/rust-lang/rust/pull/133057
- Final comment period (FCP)^1
- Stabilization PR
Unresolved Questions
- None yet.
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Read the linked ACP, implementation PR, and stabilization guide first. Check the remaining final comment period and stabilization PR steps for String::into_chars; the issue is done when those checklist items are completed and the feature's stabilization decision is recorded.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- rust
- Domain
- api
- Issue type
- Feature
- Difficulty
- 4/5
- Estimated time
- 3-5 days
- Activity status
- Quiet
- Clarity
- Mostly clear
- Newbie friendliness
- 30/100