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

Function AppendToString

util/string/join.h:23–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21
22template <typename TCharType, typename T>
23inline std::enable_if_t<!std::is_arithmetic<std::remove_cv_t<T>>::value, void>
24AppendToString(TBasicString<TCharType>& dst, const T& t) {
25 dst.AppendNoAlias(ToString(t));
26}
27
28template <typename TCharType, typename T>
29inline std::enable_if_t<std::is_arithmetic<std::remove_cv_t<T>>::value, void>

Callers 2

AppendJoinNoReserveFunction · 0.70
JoinRangeFunction · 0.70

Calls 3

AppendNoAliasMethod · 0.80
ToStringFunction · 0.70
appendMethod · 0.45

Tested by

no test coverage detected