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

Function format_to

extlibs/fmt/include/fmt/locale.h:67–74  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

65 FMT_ENABLE_IF(internal::is_output_iterator<OutputIt>::value&&
66 internal::is_string<S>::value)>
67inline OutputIt format_to(OutputIt out, const std::locale& loc,
68 const S& format_str, Args&&... args) {
69 internal::check_format_string<Args...>(format_str);
70 using context = format_context_t<OutputIt, char_t<S>>;
71 format_arg_store<context, Args...> as{args...};
72 return vformat_to(out, loc, to_string_view(format_str),
73 basic_format_args<context>(as));
74}
75
76FMT_END_NAMESPACE
77

Callers

nothing calls this directly

Calls 2

vformat_toFunction · 0.70
to_string_viewFunction · 0.70

Tested by

no test coverage detected