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

Function format_to

extlibs/fmt/include/fmt/format.h:3373–3379  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3371template <typename S, typename... Args, std::size_t SIZE = inline_buffer_size,
3372 typename Char = enable_if_t<internal::is_string<S>::value, char_t<S>>>
3373inline typename buffer_context<Char>::iterator format_to(
3374 basic_memory_buffer<Char, SIZE>& buf, const S& format_str, Args&&... args) {
3375 internal::check_format_string<Args...>(format_str);
3376 using context = buffer_context<Char>;
3377 return internal::vformat_to(buf, to_string_view(format_str),
3378 make_format_args<context>(args...));
3379}
3380
3381template <typename OutputIt, typename Char = char>
3382using format_context_t = basic_format_context<OutputIt, Char>;

Callers 1

formatted_sizeFunction · 0.70

Calls 2

vformat_toFunction · 0.70
to_string_viewFunction · 0.70

Tested by

no test coverage detected