append

Common
JVM
JS
Native
1.0
fun <T : Appendable> T.append(vararg value: CharSequence?): T
(source)

Appends all arguments to the given Appendable.

Common
JS
Native
1.9

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.

Common
JS
Native
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 value were converted to a string by the value.toString() method, and then that string was appended to this string builder.

Common
JVM
JS
Native
1.0
fun StringBuilder.append(obj: Any?): StringBuilder
(source)
Deprecated: Use append(value: Any?) instead
fun StringBuilder.append(
    str: CharArray,
    offset: Int,
    len: Int
): StringBuilder

(source)
Deprecated: Use appendRange instead.
Common
JVM
JS
Native
1.0
fun StringBuilder.append(
    vararg value: String?
): StringBuilder

(source)
fun StringBuilder.append(vararg value: Any?): StringBuilder
(source)

Appends all arguments to the given StringBuilder.