Clean size/length/first/head/empty properties and functions.

This commit is contained in:
Ilya Ryzhenkov
2014-11-14 17:30:13 +03:00
parent 828ba385ea
commit fa0542b801
42 changed files with 498 additions and 457 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ fun testSize(): Int {
val a2 = array("foo")
val a3 = array("foo", "bar")
return a1.size + a2.size + a3.size
return a1.size() + a2.size() + a3.size()
}
fun testToListToString(): String {