MCPcopy Create free account
hub / github.com/KhronosGroup/KTX-Software / vsprintf

Function vsprintf

external/fmt/include/fmt/printf.h:558–564  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

556
557template <typename Char>
558inline auto vsprintf(basic_string_view<Char> fmt,
559 typename vprintf_args<Char>::type args)
560 -> std::basic_string<Char> {
561 auto buf = basic_memory_buffer<Char>();
562 detail::vprintf(buf, fmt, args);
563 return {buf.data(), buf.size()};
564}
565
566/**
567 * Formats `args` according to specifications in `fmt` and returns the result

Callers 3

TESTFunction · 0.85
TESTFunction · 0.85
sprintfFunction · 0.85

Calls 3

vprintfFunction · 0.85
dataMethod · 0.45
sizeMethod · 0.45

Tested by 2

TESTFunction · 0.68
TESTFunction · 0.68