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

Function vformat_to

extlibs/fmt/include/fmt/core.h:1698–1705  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1696 FMT_ENABLE_IF(
1697 internal::is_contiguous_back_insert_iterator<OutputIt>::value)>
1698OutputIt vformat_to(
1699 OutputIt out, const S& format_str,
1700 basic_format_args<buffer_context<type_identity_t<Char>>> args) {
1701 using container = remove_reference_t<decltype(internal::get_container(out))>;
1702 internal::container_buffer<container> buf((internal::get_container(out)));
1703 internal::vformat_to(buf, to_string_view(format_str), args);
1704 return out;
1705}
1706
1707template <typename Container, typename S, typename... Args,
1708 FMT_ENABLE_IF(

Callers 4

vprintFunction · 0.70
vprintFunction · 0.70
vprint_mojibakeMethod · 0.70
format_toFunction · 0.70

Calls 1

to_string_viewFunction · 0.70

Tested by

no test coverage detected