| 732 | |
| 733 | template <typename S, typename Char = FMT_CHAR(S)> |
| 734 | inline std::basic_string<Char> |
| 735 | vsprintf(const S &format, |
| 736 | basic_format_args<typename basic_printf_context_t< |
| 737 | internal::basic_buffer<Char>>::type> args) { |
| 738 | basic_memory_buffer<Char> buffer; |
| 739 | printf(buffer, to_string_view(format), args); |
| 740 | return to_string(buffer); |
| 741 | } |
| 742 | |
| 743 | /** |
| 744 | \rst |
no test coverage detected