| 177 | ////////////////////////////////////////////////////////////////////////// |
| 178 | |
| 179 | String Beefy::operator+(const StringImpl& lhs, const StringImpl& rhs) |
| 180 | { |
| 181 | String str; |
| 182 | str.Reserve(lhs.mLength + rhs.mLength + 1); |
| 183 | str.Append(lhs); |
| 184 | str.Append(rhs); |
| 185 | return str; |
| 186 | } |
| 187 | |
| 188 | String Beefy::operator+(const StringImpl& lhs, const StringView& rhs) |
| 189 | { |