MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / StrCat

Function StrCat

tensorflow/tools/proto_text/gen_proto_text_functions_lib.cc:37–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

35
36template <typename... Args>
37string StrCat(const Args&... args) {
38 std::ostringstream s;
39 std::vector<int>{((s << args), 0)...};
40 return s.str();
41}
42
43template <typename... Args>
44string StrAppend(string* to_append, const Args&... args) {

Callers 15

StrAppendFunction · 0.70
GetClassNameFunction · 0.70
GetQualifiedNameFunction · 0.70
GetQualifiedAppendFnFunction · 0.70
GetEnumNameFnFunction · 0.70
GetQualifiedEnumNameFnFunction · 0.70
AppendFieldAppendMethod · 0.70
AppendEnumFunctionsMethod · 0.70
GenerateMethod · 0.70
MainFunction · 0.50

Calls

no outgoing calls

Tested by 6

TestManyNodesMethod · 0.40
TestNameClashesMethod · 0.40
CreateNodeMethod · 0.40
MakeGatherMethod · 0.40