fmt::vformat

Synopses

Declared in <fmt/format.h>
std::string
vformat(
    string_view fmt,
    format_args args);


» more...
template<typename Char>
std::basic_string<Char>
vformat(
    basic_string_view<Char> fmt,
    basic_format_args<buffered_context<Char>> args);


» more...
std::string
vformat(
    locale_ref loc,
    string_view fmt,
    format_args args);


» more...
std::string
vformat(
    text_style ts,
    string_view fmt,
    format_args args);


» more...
std::wstring
vformat(
    text_style ts,
    wstring_view fmt,
    wformat_args args);


» more...
template<
    typename S,
    typename Char = /* implementation-defined */>
std::basic_string<Char>
vformat(
    locale_ref loc,
    S const& fmt,
    basic_format_args<buffered_context<Char>> args);


» more...

Created with MrDocs