std::operator<<(std::stacktrace_entry)
来自cppreference.com
在标头 <stacktrace> 定义
|
||
std::ostream& operator<<( std::ostream& os, const std::stacktrace_entry& f ); |
(C++23 起) | |
插入 f 的描述到输出流 os 中。等价于 return os << std::to_string(f);。
目录 |