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

Function sprintf

source/extern/fmt/printf.h:612–615  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

610template <typename S, typename... T,
611 typename Char = enable_if_t<detail::is_string<S>::value, char_t<S>>>
612inline auto sprintf(const S& fmt, const T&... args) -> std::basic_string<Char> {
613 return vsprintf(detail::to_string_view(fmt),
614 fmt::make_format_args<basic_printf_context<Char>>(args...));
615}
616
617template <typename Char>
618inline auto vfprintf(

Callers

nothing calls this directly

Calls 2

vsprintfFunction · 0.85
to_string_viewFunction · 0.85

Tested by

no test coverage detected