MCPcopy Create free account
hub / github.com/PaddlePaddle/Paddle / format_string

Function format_string

paddle/utils/string/string_helper.h:77–81  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

75
76template <class... ARGS>
77std::string format_string(const char* fmt, ARGS&&... args) {
78 std::string str;
79 format_string_append(str, fmt, args...);
80 return str;
81}
82
83template <class... ARGS>
84std::string format_string(const std::string& fmt, ARGS&&... args) {

Callers 15

GetDumpPathMethod · 0.85
DumpWalkPathMethod · 0.85
DumpSampleNeighborsMethod · 0.85
GetDumpPathMethod · 0.85
GetDumpPathMethod · 0.85
localfs_open_writeFunction · 0.85
localfs_removeFunction · 0.85
localfs_listFunction · 0.85
localfs_tailFunction · 0.85

Calls 2

format_string_appendFunction · 0.85
c_strMethod · 0.80

Tested by

no test coverage detected