Stream insertion operators
Declared in <balst_stacktrace.h>
Write the value of the specified object to the specified output stream in a single-line format, and return a reference to stream.
std::ostream&
operator<<(
std::ostream& stream,
StackTraceFrame const& object);
» more...
Write the value of the specified object to the specified output stream in a single-line format, and return a reference to stream.
std::ostream&
operator<<(
std::ostream& stream,
StackTrace const& object);
» more...
Stream a multiline stack trace for the specified object to stream.
std::ostream&
operator<<(
std::ostream& stream,
StackTracePrinter const& object);
» more...
streamstream| Name | Description |
|---|---|
| stream | output stream |
| object | object to write |