Go Package bytes: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 20: Line 20:
</pre>
</pre>


<font color=red>Why would I use an bytes.Buffer and not a byte slice?</font>
<font color=darkkhaki>Why would I use an bytes.Buffer and not a byte slice?</font>
 
=Wrapping a <tt>byte[]</tt> into a <tt>Reader</tt>=
{{Internal|Go_Package_io#Wrapping_a_[]byte_into_a_Reader|Wrapping a <tt>[]byte</tt> into a <tt>Reader</tt>}}

Revision as of 18:16, 5 January 2024

External

Internal

Buffer

A Buffer is a variable-sized buffer of bytes with Read and Write methods. The zero value for Buffer is an empty buffer ready to use. A Buffer does not have to be initialized and supports both Reader and Writer interface.

Conversion of a Buffer into a []byte:

var buffer bytes.Buffer
bytes := buffer.Bytes()

Why would I use an bytes.Buffer and not a byte slice?

Wrapping a byte[] into a Reader

[[Go_Package_io#Wrapping_a_[]byte_into_a_Reader|Wrapping a []byte into a Reader]]