Skip to content

Commit aeb625a

Browse files
authored
Rollup merge of rust-lang#73466 - matthiaskrgr:char_into_string, r=dtolnay
impl From<char> for String This allows us to write ````rust fn char_to_string() -> String { 'a'.into() } ```` which was not possible before.
2 parents b5f9017 + 2cde493 commit aeb625a

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

src/liballoc/string.rs

+8
Original file line numberDiff line numberDiff line change
@@ -2518,3 +2518,11 @@ impl DoubleEndedIterator for Drain<'_> {
25182518

25192519
#[stable(feature = "fused", since = "1.26.0")]
25202520
impl FusedIterator for Drain<'_> {}
2521+
2522+
#[stable(feature = "from_char_for_string", since = "1.46.0")]
2523+
impl From<char> for String {
2524+
#[inline]
2525+
fn from(c: char) -> Self {
2526+
c.to_string()
2527+
}
2528+
}

src/liballoc/tests/string.rs

+7
Original file line numberDiff line numberDiff line change
@@ -714,3 +714,10 @@ fn test_try_reserve_exact() {
714714
}
715715
}
716716
}
717+
718+
#[test]
719+
fn test_from_char() {
720+
assert_eq!(String::from('a'), 'a'.to_string());
721+
let s: String = 'x'.into();
722+
assert_eq!(s, 'x'.to_string());
723+
}

0 commit comments

Comments
 (0)