MCPcopy Create free account
hub / github.com/fmtlib/fmt / format_to

Function format_to

include/fmt/format.h:4338–4341  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4336template <typename OutputIt, typename... T,
4337 FMT_ENABLE_IF(detail::is_output_iterator<OutputIt, char>::value)>
4338FMT_INLINE auto format_to(OutputIt out, locale_ref loc, format_string<T...> fmt,
4339 T&&... args) -> OutputIt {
4340 return fmt::vformat_to(out, loc, fmt.str, vargs<T...>{{args...}});
4341}
4342
4343template <typename... T>
4344FMT_NODISCARD FMT_INLINE auto formatted_size(locale_ref loc,

Callers 1

printMethod · 0.70

Calls 1

vformat_toFunction · 0.70

Tested by

no test coverage detected