| 4336 | template <typename OutputIt, typename... T, |
| 4337 | FMT_ENABLE_IF(detail::is_output_iterator<OutputIt, char>::value)> |
| 4338 | FMT_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 | |
| 4343 | template <typename... T> |
| 4344 | FMT_NODISCARD FMT_INLINE auto formatted_size(locale_ref loc, |