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

Function StrAppend

tensorflow/tools/proto_text/gen_proto_text_functions_lib.cc:44–47  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

42
43template <typename... Args>
44string StrAppend(string* to_append, const Args&... args) {
45 *to_append += StrCat(args...);
46 return *to_append;
47}
48
49// Class used to generate the code for proto text functions. One of these should
50// be created for each FileDescriptor whose code should be generated.

Callers 4

TESTFunction · 0.70
GeneratorClass · 0.70
QuantizeNodesFunction · 0.50

Calls 1

StrCatFunction · 0.70

Tested by 1

TESTFunction · 0.56