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

Function vformat

extlibs/fmt/include/fmt/locale.h:29–35  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

27
28template <typename Char>
29std::basic_string<Char> vformat(
30 const std::locale& loc, basic_string_view<Char> format_str,
31 basic_format_args<buffer_context<type_identity_t<Char>>> args) {
32 basic_memory_buffer<Char> buffer;
33 internal::vformat_to(loc, buffer, format_str, args);
34 return fmt::to_string(buffer);
35}
36} // namespace internal
37
38template <typename S, typename Char = char_t<S>>

Callers 1

formatFunction · 0.70

Calls 3

vformat_toFunction · 0.70
to_stringFunction · 0.70
to_string_viewFunction · 0.70

Tested by

no test coverage detected