std::operator<<(std::stacktrace_entry)

来自cppreference.com
< cpp‎ | utility‎ | stacktrace entry
2024年3月26日 (二) 10:45Lynnboy讨论 | 贡献的版本

(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
 
 
 
 
在标头 <stacktrace> 定义
std::ostream& operator<<( std::ostream& os, const std::stacktrace_entry& f );
(C++23 起)

插入 f 的描述到输出流 os 中。等价于 return os << std::to_string(f);

目录

[