| 1716 | |
| 1717 | template <typename S, typename Char = char_t<S>> |
| 1718 | inline std::basic_string<Char> vformat( |
| 1719 | const S& format_str, |
| 1720 | basic_format_args<buffer_context<type_identity_t<Char>>> args) { |
| 1721 | return internal::vformat(to_string_view(format_str), args); |
| 1722 | } |
| 1723 | |
| 1724 | /** |
| 1725 | \rst |
no test coverage detected