append

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

Appends all arguments to the given Appendable.

Since Kotlin

1.1

Appends all arguments to the given StringBuilder.

Since Kotlin

1.1

Deprecated

Use append(value: Any?) instead

Replace with

append(value = obj)

Since Kotlin

1.1
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