appendByteArray

fun ByteStringBuilder.appendByteArray(bArray: ByteArray): ByteStringBuilder

Appends a byte array to this ByteStringBuilder.

This function appends the bArray to the end of this ByteStringBuilder. If the byte array is empty, nothing is appended.

Return

This ByteStringBuilder instance, allowing for chaining of operations.

Parameters

bArray

The byte array to append.