MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / vsprintf

Function vsprintf

extlibs/fmt/include/fmt/printf.h:604–610  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

602
603template <typename S, typename Char = char_t<S>>
604inline std::basic_string<Char> vsprintf(
605 const S& format,
606 basic_format_args<basic_printf_context_t<type_identity_t<Char>>> args) {
607 basic_memory_buffer<Char> buffer;
608 printf(buffer, to_string_view(format), args);
609 return to_string(buffer);
610}
611
612/**
613 \rst

Callers 2

sprintfFunction · 0.85
gzvprintfFunction · 0.85

Calls 3

printfFunction · 0.85
to_string_viewFunction · 0.70
to_stringFunction · 0.70

Tested by

no test coverage detected