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

Function format

extlibs/fmt/include/fmt/locale.h:46–51  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

44
45template <typename S, typename... Args, typename Char = char_t<S>>
46inline std::basic_string<Char> format(const std::locale& loc,
47 const S& format_str, Args&&... args) {
48 return internal::vformat(
49 loc, to_string_view(format_str),
50 internal::make_args_checked<Args...>(format_str, args...));
51}
52
53template <typename S, typename OutputIt, typename... Args,
54 typename Char = enable_if_t<

Callers

nothing calls this directly

Calls 2

vformatFunction · 0.70
to_string_viewFunction · 0.70

Tested by

no test coverage detected