interface Appendable
typealias Appendable = Appendable
abstract fun append(c: Char): Appendable
abstract fun append(csq: CharSequence?): Appendable
abstract fun append( csq: CharSequence?, start: Int, end: Int ): Appendable
Appends all arguments to the given Appendable.
fun <T : Appendable> T.append(vararg value: CharSequence?): T
class StringBuilder : Appendable, CharSequence
typealias StringBuilder = StringBuilder
class StringBuilder : CharSequence, Appendable
© 2010–2019 JetBrains s.r.o.
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.text/-appendable/index.html