append(_:length:)
Appends to the receiver a given number of bytes from a given buffer.
Declaration
func append(_ bytes: UnsafeRawPointer, length: Int)Parameters
- bytes:
A buffer containing data to append to the receiver’s content.
- length:
The number of bytes from
bytesto append.
Discussion
A sample using this method can be found in Working With Mutable Binary Data.