removed some string methods from library.jet

This commit is contained in:
svtk
2012-01-20 19:31:04 +04:00
parent f541cce098
commit b3eb44e769
8 changed files with 39 additions and 35 deletions
-10
View File
@@ -50,16 +50,6 @@ class String() : Comparable<String> {
fun plus(other : Any?) : String
fun equals(other : Any?) : Boolean
fun equalsIgnoreCase(other: String?) : Boolean
fun substring(start: Int): String
fun substring(start: Int, end: Int): String
fun startsWith(prefix: String, toffset: Int): Boolean
fun startsWith(prefix: String): Boolean
fun endsWith(suffix: String): Boolean
fun trim(): String
}