CppDS.com

C++ 98 11 14 17 20 手册

std::visit_format_arg

来自cppreference.com
< cpp‎ | utility‎ | format
 
 
工具库
通用工具
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中弃用)
整数比较函数
(C++20)
swap 与类型运算
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
常用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++17)

初等字符串转换
(C++17)
(C++17)
 
格式化库
格式化函数
(C++20)
(C++20)
(C++20)
(C++20)
格式化器
(C++20)
格式化参数
visit_format_arg
(C++20)
格式错误
 
定义于头文件 <format>
template<class Visitor, class Context>
/*see below*/ visit_format_arg(Visitor&& vis, std::basic_format_arg<Context> arg);
(C++20 起)

应用 visarg 中含有的对象。等价于

std::visit(std::forward<Visitor>(vis), value)

其中 value 是存储于 argstd::variant

参数

vis - 接受来自 arg 的每个可能可选项的可调用 (Callable)
arg - 要观览的 std::basic_format_arg

返回值

选择的观览器调用所返回的值。

示例

参阅

关闭