Split Library.kt into several files

For better readbility and discoverability. Also rename String.compareTo
parameter to "other", since that is the name of parameter of other compareTo's
This commit is contained in:
Alexander Udalov
2014-02-25 19:12:04 +04:00
parent 154f2c0a13
commit 6e23af2ba3
9 changed files with 48 additions and 40 deletions
+1 -1
View File
@@ -1663,7 +1663,7 @@ public final class String : kotlin.Comparable<kotlin.String>, kotlin.CharSequenc
/*primary*/ public constructor String()
public open override /*1*/ val length: kotlin.Int
public open override /*1*/ fun <get-length>(): kotlin.Int
public open override /*1*/ fun compareTo(/*0*/ that: kotlin.String): kotlin.Int
public open override /*1*/ fun compareTo(/*0*/ other: kotlin.String): kotlin.Int
public open override /*1*/ fun get(/*0*/ index: kotlin.Int): kotlin.Char
public final fun plus(/*0*/ other: kotlin.Any?): kotlin.String
}