Skip to content

Commit 0a008b9

Browse files
authored
Rollup merge of #40028 - withoutboats:string_from_iter, r=alexcrichton
impl FromIterator<&char> for String
2 parents 06a0233 + 097398e commit 0a008b9

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/libcollections/string.rs

+9
Original file line numberDiff line numberDiff line change
@@ -1483,6 +1483,15 @@ impl FromIterator<char> for String {
14831483
}
14841484
}
14851485

1486+
#[stable(feature = "string_from_iter_by_ref", since = "1.17.0")]
1487+
impl<'a> FromIterator<&'a char> for String {
1488+
fn from_iter<I: IntoIterator<Item = &'a char>>(iter: I) -> String {
1489+
let mut buf = String::new();
1490+
buf.extend(iter);
1491+
buf
1492+
}
1493+
}
1494+
14861495
#[stable(feature = "rust1", since = "1.0.0")]
14871496
impl<'a> FromIterator<&'a str> for String {
14881497
fn from_iter<I: IntoIterator<Item = &'a str>>(iter: I) -> String {

0 commit comments

Comments
 (0)