tinyformat::makeFormatList

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

NameDescription
argsArguments to store in the format list.