[#tinyformat-makeFormatList] = xref:tinyformat.adoc[tinyformat]::makeFormatList :relfileprefix: ../ :mrdocs: Make type‐agnostic format list from list of template arguments. == Synopsis Declared in `<tinyformat.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- 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 [cols="1,4"] |=== | Name| Description | *args* | Arguments to store in the format list. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#