open fun appendBuffer(buff: Buffer): Buffer
Appends the specified Buffer to the end of this Buffer. The buffer will expand as necessary to accommodate any bytes written.
Returns a reference to this so multiple operations can be appended together.
Return
open fun appendBuffer(buff: Buffer, offset: Int, len: Int): Buffer
Appends the specified Buffer starting at the offset using len to the end of this Buffer. The buffer will expand as necessary to accommodate any bytes written.
Returns a reference to this so multiple operations can be appended together.
Return