unitbuf function — Manipulator to use unit buffering
ios_base& unitbuf(ios_base& stream)
The unitbuf
function is a
manipulator that sets the unitbuf
flag, which causes the stream to be flushed after each output
operation. Specifically, the function calls stream.setf(ios_base::unitbuf)
and returns
stream
.