A std::ostream implementation for use by the logging macros.
Synopsis
Declared in <folly/logging/LogStream.h>
class LogStream
: public std::ostream
Description
All‐in‐all this is pretty similar to std::stringstream, but lets us destructively extract an rvalue‐reference to the underlying string.
Base Classes
Name |
Description |
|
Member Functions
Name |
Description |
|
Constructs a stream bound to the given processor. |
|
Destroys the stream. |
Tests whether the stream has buffered any output. |
|
Extracts the buffered string, leaving the stream empty. |
|
Returns the processor bound to this stream. |
Created with MrDocs