| 932 | */ |
| 933 | |
| 934 | friend TBasicString operator+(TBasicString&& s1, const TBasicString& s2) Y_WARN_UNUSED_RESULT { |
| 935 | s1 += s2; |
| 936 | return std::move(s1); |
| 937 | } |
| 938 | |
| 939 | friend TBasicString operator+(const TBasicString& s1, TBasicString&& s2) Y_WARN_UNUSED_RESULT { |
| 940 | s2.prepend(s1); |