Move Appendable to its own file

This commit is contained in:
Abduqodiri Qurbonzoda
2019-11-14 07:09:42 +03:00
parent 50752d47fe
commit 0c033297a8
5 changed files with 96 additions and 32 deletions
@@ -5,12 +5,6 @@
package kotlin.text
expect interface Appendable {
fun append(c: Char): Appendable
fun append(csq: CharSequence?): Appendable
fun append(csq: CharSequence?, start: Int, end: Int): Appendable
}
expect class StringBuilder : Appendable, CharSequence {
constructor()
constructor(capacity: Int)