Rename CharSequence.get to charAt
This is done for JVM interoperability. There's still a member function String.get() and an extension function "get" on CharSequence #KT-1730 Fixed #KT-5389 Fixed
This commit is contained in:
@@ -27,8 +27,6 @@ public fun String.split(regex: String, limit: Int): Array<String> = noImpl
|
||||
native public fun String.substring(beginIndex : Int) : String = noImpl
|
||||
native public fun String.substring(beginIndex : Int, endIndex : Int) : String = noImpl
|
||||
|
||||
native public fun String.charAt(index : Int) : Char = noImpl
|
||||
|
||||
native public fun String.concat(str : String) : String = noImpl
|
||||
|
||||
native public fun String.match(regex : String) : Array<String> = noImpl
|
||||
|
||||
Reference in New Issue
Block a user