MCPcopy Create free account
hub / github.com/andreasfertig/programming-with-cpp20 / format

Function format

12.19-constevalParmCheck1/main.cpp:173–179  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

171
172template<class... Args>
173string format(format_string<Args...> fmt, const Args&... args)
174{
175 string out{};
176 Formatter(out, fmt.str, args...);
177
178 return out;
179}
180
181int main()
182{

Callers 1

mainFunction · 0.70

Calls 1

FormatterFunction · 0.70

Tested by

no test coverage detected