append

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

Appends all arguments to the given Appendable.


Appends all arguments to the given StringBuilder.


Deprecated

Use append(value: Any?) instead

Replace with

append(value = obj)

Deprecated

Use append(value: Boolean) instead

Replace with

append(value = it)

Deprecated

Use append(value: Byte) instead

Replace with

append(value = it)

Deprecated

Use append(value: Short) instead

Replace with

append(value = it)

Deprecated

Use append(value: Int) instead

Replace with

append(value = it)

Deprecated

Use append(value: Long) instead

Replace with

append(value = it)

Deprecated

Use append(value: Float) instead

Replace with

append(value = it)

Deprecated

Use append(value: Double) instead

Replace with

append(value = it)

Deprecated

Use append(value: String) instead

Replace with

append(value = it)

Deprecated

Use append(value: CharArray) instead

Replace with

append(value = it)