| 4320 | |
| 4321 | template <typename... T> |
| 4322 | FMT_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 | |
| 4327 | template <typename OutputIt, |
| 4328 | FMT_ENABLE_IF(detail::is_output_iterator<OutputIt, char>::value)> |