fmt::arg

A wchar_t counterpart of fmt::arg.

Synopsis

Declared in <fmt/xchar.h>

template<typename T>
named_arg<T, wchar_t>
arg(
    wchar_t const* name,
    T const& arg);

Return Value

A named argument wrapping arg under name.

Parameters

NameDescription
nameThe name of the argument.
argThe argument value.