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

Function format

include/fmt/format.h:4322–4325  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4320
4321template <typename... T>
4322FMT_INLINE auto format(locale_ref loc, format_string<T...> fmt, T&&... args)
4323 -> std::string {
4324 return vformat(loc, fmt.str, vargs<T...>{{args...}});
4325}
4326
4327template <typename OutputIt,
4328 FMT_ENABLE_IF(detail::is_output_iterator<OutputIt, char>::value)>

Callers 1

formatMethod · 0.70

Calls 1

vformatFunction · 0.70

Tested by

no test coverage detected