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

Deprecated

Use append(value: Any?) instead

Replace with

append(value = obj)

Since Kotlin

1.0

inline fun StringBuilder.append(str: CharArray, offset: Int, len: Int): StringBuilder(source)

Deprecated (with error)

Use appendRange instead.

Replace with

this.appendRange(str, offset, offset + len)

Since Kotlin

1.0