MCPcopy Create free account
hub / github.com/BYVoid/OpenCC / StrCat

Function StrCat

deps/google-benchmark/src/string_util.h:39–43  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

37
38template <class... Args>
39inline std::string StrCat(Args&&... args) {
40 std::ostringstream ss;
41 StrCatImp(ss, std::forward<Args>(args)...);
42 return ss.str();
43}
44
45BENCHMARK_EXPORT
46std::vector<std::string> StrSplit(const std::string& str, char delim);

Callers 4

CpuScalingFunction · 0.85
gtest-message.hFile · 0.85
PrintValueMethod · 0.85

Calls 1

strMethod · 0.45

Tested by 1

PrintValueMethod · 0.68