MCPcopy Create free account
hub / github.com/fmtlib/fmt / format

Method format

test/format-test.cc:605–607  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

603template <int N> struct test_format {
604 template <typename... T>
605 static auto format(fmt::string_view fmt, const T&... args) -> std::string {
606 return test_format<N - 1>::format(fmt, N - 1, args...);
607 }
608};
609
610template <> struct test_format<0> {

Callers

nothing calls this directly

Calls 1

formatFunction · 0.70

Tested by

no test coverage detected