nounitbuf function — Manipulator to use unit buffering
ios_base& nounitbuf(ios_base& stream)
The nounitbuf
function is a
manipulator that clears the unitbuf
flag, so the stream is not flushed
after each output operation. Specifically, the function calls
stream.unsetf(ios_base::unitbuf)
and returns stream
.