std::visit_format_arg

From cppreference.com
< cpp‎ | utility‎ | format
 
 
Utilities library
General utilities
Date and time
Function objects
Formatting library (C++20)
(C++11)
Relational operators (deprecated in C++20)
Integer comparison functions
(C++20)(C++20)(C++20)   
(C++20)
Swap and type operations
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
Common vocabulary types
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
Elementary string conversions
(C++17)
(C++17)
 
Formatting library
Formatting functions
(C++20)
(C++20)
(C++20)
(C++20)
Formatting concepts
Formatter
(C++20)
Formatting arguments
visit_format_arg
(C++20) (deprecated in C++26)
Format error
 
Defined in header <format>
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)

Applies the visitor vis to the object contained in arg.

Equivalent to std::visit(std::forward<Visitor>(vis), value), where value is the std::variant stored in arg.

Parameters

vis - a Callable that accepts every possible alternative from arg
arg - a std::basic_format_arg to be visited

Return value

The value returned by the selected invocation of the visitor.

Example

See also

creates a type-erased object referencing all formatting arguments, convertible to format_args
(function template)