| 590 | |
| 591 | template <typename Char> |
| 592 | inline auto vsprintf( |
| 593 | basic_string_view<Char> fmt, |
| 594 | basic_format_args<basic_printf_context<type_identity_t<Char>>> args) |
| 595 | -> std::basic_string<Char> { |
| 596 | auto buf = basic_memory_buffer<Char>(); |
| 597 | detail::vprintf(buf, fmt, args); |
| 598 | return to_string(buf); |
| 599 | } |
| 600 | |
| 601 | /** |
| 602 | \rst |