2nd stage of split semantics change: remove deprecated String.split(String), rename splitBy back to split.
This commit is contained in:
@@ -26,14 +26,6 @@ deprecated("Use split(Regex) instead.")
|
||||
library("splitString")
|
||||
public fun String.splitWithRegex(regex: String, limit: Int): Array<String> = noImpl
|
||||
|
||||
deprecated("Use split(Regex) instead.")
|
||||
library("splitString")
|
||||
public fun String.split(regex: String): Array<String> = noImpl
|
||||
|
||||
deprecated("Use split(Regex) instead.")
|
||||
library("splitString")
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user