os.Stdout.Write() is an unbuffered write. To get a buffered write, one can use:
f := bufio.NewWriter(os.Stdout)
f.Write(b)
Is there a more idiomatic way to get buffered output?
|
os.Stdout.Write() is an unbuffered write. To get a buffered write, one can use:
Is there a more idiomatic way to get buffered output? |
|||
|
|
|
No, that is the most idiomatic way to buffer writes to Stdout. In many cases, you will want to do also add a defer:
This will ensure that the buffer is flushed when you return from the function. |
|||||
|