std::formatter<std::stacktrace_entry>

来自cppreference.com
 
 
 
 
在标头 <stacktrace> 定义
template<>
struct formatter<std::stacktrace_entry>;
(C++23 起)

std::formatter 针对 std::stacktrace_entry 的模板特化允许用户使用如 std::format 这样的格式化函数把站踪迹条目对象转换为字符串。

格式说明

格式说明的语法是:

填充与对齐 (可选) 宽度 (可选)

填充与对齐宽度 具有与标准格式说明中相同的含义。

格式化输出与 to_string 的结果相匹配,并按格式说明符进行适当调整。

示例

参阅

(C++20)
定义针对给定类型的格式化规则
(类模板)
(C++23)
将参数的格式化表达输出到 stdout 或文件缓冲区
(函数模板)