fmt::formatter<std::nullptr_t, Char>

Specializes formatter<Type, Char> to format Type values the same way as Base, by delegating to formatter<Base, Char>.

Synopsis

Declared in <fmt/format.h>

template<typename Char>
struct formatter<std::nullptr_t, Char>
    : formatter<void const*, Char>

Base Classes

NameDescription
formatter<void const*, Char>A formatter for objects of type T.

Member Functions

NameDescription
format Formats value by delegating to the Base formatter.