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

Function vformat_to

extlibs/fmt/include/fmt/format.h:3199–3206  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3197/** Formats arguments and writes the output to the range. */
3198template <typename ArgFormatter, typename Char, typename Context>
3199typename Context::iterator vformat_to(
3200 typename ArgFormatter::range out, basic_string_view<Char> format_str,
3201 basic_format_args<Context> args,
3202 internal::locale_ref loc = internal::locale_ref()) {
3203 format_handler<ArgFormatter, Char, Context> h(out, format_str, args, loc);
3204 internal::parse_format_string<false>(format_str, h);
3205 return h.context.out();
3206}
3207
3208// Casts ``p`` to ``const void*`` for pointer formatting.
3209// Example:

Callers 4

format_toFunction · 0.70
vformat_to_nFunction · 0.70
vformatMethod · 0.70
vprintFunction · 0.70

Calls 4

locale_refClass · 0.85
to_string_viewFunction · 0.70
rangeFunction · 0.50
outMethod · 0.45

Tested by

no test coverage detected