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

Deprecated

Warning since 1.3

Error since 1.6

Use append(value: Boolean) instead

Replace with

append(value = it)

Since Kotlin

1.3

Deprecated

Warning since 1.3

Error since 1.6

Use append(value: Byte) instead

Replace with

append(value = it)

Since Kotlin

1.3

Deprecated

Warning since 1.3

Error since 1.6

Use append(value: Short) instead

Replace with

append(value = it)

Since Kotlin

1.3

Deprecated

Warning since 1.3

Error since 1.6

Use append(value: Int) instead

Replace with

append(value = it)

Since Kotlin

1.3

Deprecated

Warning since 1.3

Error since 1.6

Use append(value: Long) instead

Replace with

append(value = it)

Since Kotlin

1.3

Deprecated

Warning since 1.3

Error since 1.6

Use append(value: Float) instead

Replace with

append(value = it)

Since Kotlin

1.3

Deprecated

Warning since 1.3

Error since 1.6

Use append(value: Double) instead

Replace with

append(value = it)

Since Kotlin

1.3

Deprecated

Warning since 1.3

Error since 1.6

Use append(value: String) instead

Replace with

append(value = it)

Since Kotlin

1.3

Deprecated

Warning since 1.3

Error since 1.6

Use append(value: CharArray) instead

Replace with

append(value = it)

Since Kotlin

1.3