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
+9
View File
@@ -0,0 +1,9 @@
package kotlin
public class String : Comparable<String>, CharSequence {
public fun plus(other: Any?): String
public override fun compareTo(other: String): Int
public override fun get(index: Int): Char
public override val length: Int
}