MCPcopy Create free account
hub / github.com/c42f/tinyformat / printfln

Function printfln

tinyformat.h:1076–1080  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1074
1075template<typename... Args>
1076void printfln(const char* fmt, const Args&... args)
1077{
1078 format(std::cout, fmt, args...);
1079 std::cout << '\n';
1080}
1081
1082
1083#else // C++98 version

Callers 1

unitTestsFunction · 0.85

Calls 1

formatFunction · 0.85

Tested by 1

unitTestsFunction · 0.68