Skip to content

Commit d2272d4

Browse files
authored
Rollup merge of #73465 - lzutao:spec-char-tostring, r=sfackler
Add specialization of `ToString for char` Closes #73462
2 parents b443a10 + e5c5df8 commit d2272d4

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/liballoc/string.rs

+8
Original file line numberDiff line numberDiff line change
@@ -2230,6 +2230,14 @@ impl<T: fmt::Display + ?Sized> ToString for T {
22302230
}
22312231
}
22322232

2233+
#[stable(feature = "char_to_string_specialization", since = "1.46.0")]
2234+
impl ToString for char {
2235+
#[inline]
2236+
fn to_string(&self) -> String {
2237+
String::from(self.encode_utf8(&mut [0; 4]))
2238+
}
2239+
}
2240+
22332241
#[stable(feature = "str_to_string_specialization", since = "1.9.0")]
22342242
impl ToString for str {
22352243
#[inline]

0 commit comments

Comments
 (0)