MCPcopy Create free account
hub / github.com/LemLib/LemLib / format

Function format

include/fmt/format.h:4064–4066  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4062
4063template <typename Locale, typename... T, FMT_ENABLE_IF(detail::is_locale<Locale>::value)>
4064inline auto format(const Locale& loc, format_string<T...> fmt, T&&... args) -> std::string {
4065 return fmt::vformat(loc, string_view(fmt), fmt::make_format_args(args...));
4066}
4067
4068template <typename OutputIt, typename Locale,
4069 FMT_ENABLE_IF(detail::is_output_iterator<OutputIt, char>::value&& detail::is_locale<Locale>::value)>

Callers 1

formatMethod · 0.70

Calls 2

vformatFunction · 0.85
make_format_argsFunction · 0.85

Tested by

no test coverage detected