append

fun <T : Appendable> T.append(vararg value: CharSequence?): T(source)

Appends all arguments to the given Appendable.

Since Kotlin

1.0

Appends all arguments to the given StringBuilder.

Since Kotlin

1.0

Appends the string representation of the specified byte value to this string builder and returns this instance.

The overall effect is exactly as if the value were converted to a string by the value.toString() method, and then that string was appended to this string builder.

Since Kotlin

1.9

Appends the string representation of the specified short value to this string builder and returns this instance.

The overall effect is exactly as if the