KT-1589: Array<T>(size) renamed to arrayOfNulls

This commit is contained in:
Alex Tkachman
2012-04-02 14:30:37 +03:00
parent a1582e1911
commit ffbce7fe1e
21 changed files with 24 additions and 24 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
package jet
public fun Array<T>(public val size : Int) : Array<T?>
public fun arrayOfNulls<T>(public val size : Int) : Array<T?>
public class Array<T>(public val size : Int, init : (Int) -> T) {
public fun get(index : Int) : T