appendString

fun ByteStringBuilder.appendString(string: String): ByteStringBuilder

Appends a string to this ByteStringBuilder.

This function appends the string as a sequence of bytes, encoded using UTF-8, to the end of this ByteStringBuilder.

Return

This ByteStringBuilder instance, allowing for chaining of operations.

Parameters

string

The string to append.