Make type-agnostic format list from list of template arguments.
Declared in <tinyformat.h>
template<typename... Args>
/* implementation-defined */
makeFormatList(Args const&... args);
The exact return type of this function is an implementation detail and shouldn't be relied upon. Instead it should be stored as a FormatListRef:
FormatListRef formatList = makeFormatList( /.../ );
A format list holding the given arguments in a type-opaque way.
| Name | Description |
|---|---|
| args | Arguments to store in the format list. |