MCPcopy Create free account
hub / github.com/catboost/catboost / Join

Function Join

util/string/join.h:99–103  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

97
98template <typename TFirst, typename... TRest>
99inline TString Join(const TStringBuf delim, const TFirst& f, const TRest&... r) {
100 TString ret = ToString(f);
101 AppendJoin(ret, delim, r...);
102 return ret;
103}
104
105// Note that char delimeter @cdelim will be printed as single char string,
106// but any char value @v will be printed as corresponding numeric code.

Callers 6

Y_UNIT_TESTFunction · 0.70
Y_UNIT_TESTFunction · 0.70
WrapStringBufFunction · 0.50
TEnumDescriptionBaseMethod · 0.50
~TThreadMethod · 0.50
Y_UNIT_TESTFunction · 0.50

Calls 2

AppendJoinFunction · 0.85
ToStringFunction · 0.70

Tested by

no test coverage detected