|
template<typename T , typename Context , typename Char > |
void | detail::convert_arg (basic_format_arg< Context > &arg, Char type) |
|
template<typename Char > |
auto | detail::make_arg_formatter (buffer_appender< Char > iter, format_specs< Char > &s) -> arg_formatter< Char > |
|
template<typename Char > |
void | detail::parse_flags (format_specs< Char > &specs, const Char *&it, const Char *end) |
|
template<typename Char , typename GetArg > |
auto | detail::parse_header (const Char *&it, const Char *end, format_specs< Char > &specs, GetArg get_arg) -> int |
|
auto | detail::parse_printf_presentation_type (char c, type t) -> presentation_type |
|
template<typename Char , typename Context > |
void | detail::vprintf (buffer< Char > &buf, basic_string_view< Char > format, basic_format_args< Context > args) |
|
template<typename... T> |
auto | make_printf_args (const T &... args) -> format_arg_store< printf_context, T... > |
| \rst Constructs an ~fmtformat_arg_store object that contains references to arguments and can be implicitly converted to ~fmtprintf_args . More...
|
|
template<typename... T> |
auto | make_wprintf_args (const T &... args) -> format_arg_store< wprintf_context, T... > |
|
template<typename Char > |
auto | vsprintf (basic_string_view< Char > fmt, basic_format_args< basic_printf_context< type_identity_t< Char > > > args) -> std::basic_string< Char > |
|
template<typename S , typename... T, typename Char = enable_if_t<detail::is_string<S>::value, char_t<S>>> |
auto | sprintf (const S &fmt, const T &... args) -> std::basic_string< Char > |
| \rst Formats arguments and returns the result as a string. More...
|
|
template<typename Char > |
auto | vfprintf (std::FILE *f, basic_string_view< Char > fmt, basic_format_args< basic_printf_context< type_identity_t< Char > > > args) -> int |
|
template<typename S , typename... T, typename Char = char_t<S>> |
auto | fprintf (std::FILE *f, const S &fmt, const T &... args) -> int |
| \rst Prints formatted data to the file f. More...
|
|
template<typename Char > |
FMT_DEPRECATED auto | vprintf (basic_string_view< Char > fmt, basic_format_args< basic_printf_context< type_identity_t< Char > > > args) -> int |
|
template<typename... T> |
auto | printf (string_view fmt, const T &... args) -> int |
| \rst Prints formatted data to stdout . More...
|
|
template<typename... T> |
FMT_DEPRECATED auto | printf (basic_string_view< wchar_t > fmt, const T &... args) -> int |
|