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

Function vsprintf

source/extern/fmt/printf.h:592–599  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

590
591template <typename Char>
592inline auto vsprintf(
593 basic_string_view<Char> fmt,
594 basic_format_args<basic_printf_context<type_identity_t<Char>>> args)
595 -> std::basic_string<Char> {
596 auto buf = basic_memory_buffer<Char>();
597 detail::vprintf(buf, fmt, args);
598 return to_string(buf);
599}
600
601/**
602 \rst

Callers 1

sprintfFunction · 0.85

Calls 2

vprintfFunction · 0.85
to_stringFunction · 0.85

Tested by

no test coverage detected