append

fun append(value: Char)

Appends value as a byte value

Parameters

value

character whose lowest byte is to be appended


fun append(value: Byte)

Appends value as a byte value

Parameters

value

byte to append


fun append(value: String)

Appends the characters in value as bytes values

Parameters

value

string to append


fun append(value: Int)

Append the string repesentation of value (short for append(String.valueOf(value)))

Parameters

value

int to append as a string