MCPcopy Create free account
hub / github.com/catboost/catboost / TBasicString operator+

Function TBasicString operator+

util/generic/string.h:934–937  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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);

Callers

nothing calls this directly

Calls 3

JoinFunction · 0.70
moveFunction · 0.50
prependMethod · 0.45

Tested by

no test coverage detected