| Unnamed overloads |  | 
| arg | Returns a named argument to be used in a formatting function. It should only be used in a call to a formatting function. | 
| assert_fail |  | 
| bg | Creates a text style from the background color. | 
| fg | Creates a text style from the foreground (text) color. | 
| format | formatoverloads | 
| format_system_error | Formats an error message for an error returned by an operating system or a language runtime, for example a file opening error, and writes it to out. The format is the same as the one used bystd::system_error(ec, message)whereecisstd::error_code(error_code, std::generic_category()). It is implementation-defined but normally looks like: | 
| format_to | format_tooverloads | 
| format_to_n | Formats argsaccording to specifications infmt, writes up toncharacters of the result to the output iteratoroutand returns the total (not truncated) output size and the iterator past the end of the output range.format_to_ndoes not append a terminating null character. | 
| formatted_size | Returns the number of chars in the output of format(fmt, args...). | 
| fprintf | Formats argsaccording to specifications infmtand writes the output tof. | 
| gmtime | Converts given time since epoch as std::time_tvalue into calendar time, expressed in Coordinated Universal Time (UTC). Unlikestd::gmtime, this function is thread-safe on most platforms. | 
| group_digits | Returns a view that formats an integer value using ',' as a locale-independent thousands separator. | 
| join | joinoverloads | 
| make_format_args |  | 
| make_printf_args | Constructs an format_arg_storeobject that contains references to arguments and can be implicitly converted toprintf_args. | 
| make_wformat_args |  | 
| max_of |  | 
| min_of |  | 
| operator| | Bitwise disjunction operators | 
| print | printoverloads | 
| printf | Formats argsaccording to specifications infmtand writes the output tostdout. | 
| println | printlnoverloads | 
| ptr | Converts ptoconst void*for pointer formatting. | 
| report_error | Reports a format error at compile time or, via a format_errorexception, at runtime. | 
| report_system_error |  | 
| runtime | Creates a runtime format string. | 
| sprintf | Formats argsaccording to specifications infmtand returns the result as as string. | 
| streamed | Returns a view that formats valuevia an ostreamoperator<<. | 
| styled | Returns an argument that will be formatted using ANSI escape sequences, to be used in a formatting function. | 
| system_category |  | 
| system_error | Constructs std::system_errorwith a message formatted withfmt::format(fmt, args...).error_codeis a system error code as given byerrno. | 
| to_string | Converts valuetostd::stringusing the default format for typeT. | 
| to_wstring | Converts valuetostd::wstringusing the default format for typeT. | 
| underlying | Converts eto the underlying type. | 
| vformat |  | 
| vformat_to | vformat_tooverloads | 
| vformat_to_n |  | 
| vfprintf |  | 
| vprint |  | 
| vprint_buffered |  | 
| vprintln |  | 
| vsprintf |  | 
| vsystem_error |  | 
| operator== | Equality operator | 
| operator!= | Inequality operator | 
| operator< | Less-than operator | 
| operator<= | Less-than-or-equal operator | 
| operator> | Greater-than operator | 
| operator>= | Greater-than-or-equal operator |