std::visit_format_arg

Header: <format>

Applies the visitor vis to the object contained in arg.

# Declarations

template< class Visitor, class Context >
/* see below */ visit_format_arg( Visitor&& vis, std::basic_format_arg<Context> arg );

(since C++20) (deprecated in C++26)

# Parameters

# Return value

The value returned by the selected invocation of the visitor.

# Notes

As of C++26, std::visit_format_arg is deprecated in favor of the visit member functions of std::basic_format_arg.

# Example

This section is incompleteReason: no example

# See also