Move comparison related functions to kotlin.comparisons, update imports in stdlib.

This commit is contained in:
Ilya Gorbunov
2016-01-16 16:00:36 +03:00
parent c250921643
commit 67ef790abc
20 changed files with 353 additions and 2 deletions
@@ -5,6 +5,7 @@ import java.util.ArrayList
import kotlin.test.*
import org.junit.Test as test
import kotlin.comparisons.*
fun <T> List<T>.toArrayList() = this.toCollection(ArrayList<T>())