Rename copyToArray() to toTypedArray().

This commit is contained in:
Ilya Gorbunov
2015-04-20 20:17:49 +03:00
parent 5eb3c0bb5e
commit be11394adf
9 changed files with 17 additions and 11 deletions
+1 -1
View File
@@ -32,4 +32,4 @@ library
public fun booleanArrayOf(vararg content : Boolean): BooleanArray = noImpl
library("copyToArray")
public fun <reified T> Collection<T>.copyToArray(): Array<T> = noImpl
public fun <reified T> Collection<T>.toTypedArray(): Array<T> = noImpl