| 1696 | FMT_ENABLE_IF( |
| 1697 | internal::is_contiguous_back_insert_iterator<OutputIt>::value)> |
| 1698 | OutputIt vformat_to( |
| 1699 | OutputIt out, const S& format_str, |
| 1700 | basic_format_args<buffer_context<type_identity_t<Char>>> args) { |
| 1701 | using container = remove_reference_t<decltype(internal::get_container(out))>; |
| 1702 | internal::container_buffer<container> buf((internal::get_container(out))); |
| 1703 | internal::vformat_to(buf, to_string_view(format_str), args); |
| 1704 | return out; |
| 1705 | } |
| 1706 | |
| 1707 | template <typename Container, typename S, typename... Args, |
| 1708 | FMT_ENABLE_IF( |
no test coverage detected