Make type‐agnostic format list from list of template arguments.
Synopsis
Declared in <tinyformat.h>
template<typename... Args>
/* implementation-defined */
makeFormatList(Args const&... args);
Description
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( /_..._/ );
Return Value
A format list holding the given arguments in a type‐opaque way.
Parameters
Name |
Description |
args |
Arguments to store in the format list. |
Created with MrDocs