Feature gate: #![feature(string_extend_from_within)]
This is a tracking issue for the String::extend_from_within method.
This method is just like Vec::extend_from_within (which has been stable since 1.53.0).
Note that the original impl PR didn't create a tracking issue.
Public API
// in alloc::string
impl String {
pub fn extend_from_within<R>(&mut self, src: R)
where
R: RangeBounds<usize>;
}
Steps / History
Unresolved Questions
Feature gate:
#![feature(string_extend_from_within)]This is a tracking issue for the
String::extend_from_withinmethod.This method is just like
Vec::extend_from_within(which has been stable since 1.53.0).Note that the original impl PR didn't create a tracking issue.
Public API
Steps / History
String::extend_from_within#85801string_extend_from_within#103807Unresolved Questions
Footnotes
https://std-dev-guide.rust-lang.org/feature-lifecycle/stabilization.html ↩