Add tracking issue for string_extend_from_within

This commit is contained in:
Sky 2022-10-31 12:01:20 -04:00 committed by GitHub
parent 2afca78a0b
commit 3e23d60a32
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -949,7 +949,7 @@ impl String {
/// assert_eq!(string, "abcdecdeabecde"); /// assert_eq!(string, "abcdecdeabecde");
/// ``` /// ```
#[cfg(not(no_global_oom_handling))] #[cfg(not(no_global_oom_handling))]
#[unstable(feature = "string_extend_from_within", issue = "none")] #[unstable(feature = "string_extend_from_within", issue = "103806")]
pub fn extend_from_within<R>(&mut self, src: R) pub fn extend_from_within<R>(&mut self, src: R)
where where
R: RangeBounds<usize>, R: RangeBounds<usize>,