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

Function vformat

include/fmt/format.h:4314–4319  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4312FMT_API void report_system_error(int error_code, const char* message) noexcept;
4313
4314inline auto vformat(locale_ref loc, string_view fmt, format_args args)
4315 -> std::string {
4316 auto buf = memory_buffer();
4317 detail::vformat_to(buf, fmt, args, loc);
4318 return {buf.data(), buf.size()};
4319}
4320
4321template <typename... T>
4322FMT_INLINE auto format(locale_ref loc, format_string<T...> fmt, T&&... args)

Callers 1

formatFunction · 0.70

Calls 3

vformat_toFunction · 0.70
dataMethod · 0.45
sizeMethod · 0.45

Tested by

no test coverage detected