ImmutableString += String optimized.

This commit is contained in:
Stephen Chung 2021-04-23 23:37:33 +08:00
parent cc1f941875
commit dc3a217b2f

View File

@ -395,7 +395,13 @@ impl Add<String> for &ImmutableString {
impl AddAssign<String> for ImmutableString {
#[inline(always)]
fn add_assign(&mut self, rhs: String) {
self.make_mut().push_str(&rhs);
if !rhs.is_empty() {
if self.is_empty() {
self.0 = Into::<SmartString>::into(rhs).into();
} else {
self.make_mut().push_str(&rhs);
}
}
}
}