When the unitbuf flag is not set, the associated buffer is not forced to be flushed after every insertion operation.
This flag can be set with the unitbuf manipulator, forcing flushes after every insertion.
The unitbuf flag is not set in standard streams on initialization.
Parameters
- str
- Stream object where to apply.
Because this function is a manipulator, it is designed to be used alone with no arguments in conjunction with the insertion (<<) and extraction (>>) operations on streams (see example below).
Return Value
A reference to the stream object.Example
| 1 2 3 4 5 6 7 8 9 10 |
|
See also
| unitbuf | Flush buffer after insertions (manipulator function) |
| ios_base::flags | Get/set format flags (public member function) |
| ios_base::setf | Set specific format flags (public member function) |
| ios_base::unsetf | Clear specific format flags (public member function) |
