| 602 | |
| 603 | template <typename S, typename Char = char_t<S>> |
| 604 | inline std::basic_string<Char> vsprintf( |
| 605 | const S& format, |
| 606 | basic_format_args<basic_printf_context_t<type_identity_t<Char>>> args) { |
| 607 | basic_memory_buffer<Char> buffer; |
| 608 | printf(buffer, to_string_view(format), args); |
| 609 | return to_string(buffer); |
| 610 | } |
| 611 | |
| 612 | /** |
| 613 | \rst |
no test coverage detected