std::operator<<(std::stacktrace_entry)
From cppreference.com
< cpp | utility | stacktrace entry
| Defined in header <stacktrace>
|
||
| std::ostream& operator<<( std::ostream& os, const std::stacktrace_entry& f ); |
(since C++23) | |
Inserts the description of f into the output stream os. Equivalent to return os << std::to_string(f);.
Contents |
[edit] Parameters
| os | - | an output stream |
| f | - | a stacktrace_entry whose description is to be inserted
|
[edit] Return value
os