removed unnecessary import jet.Iterator

This commit is contained in:
Svetlana Isakova
2012-08-29 15:10:57 +04:00
parent 726bcb5465
commit a3194e9a46
29 changed files with 0 additions and 29 deletions
@@ -10,7 +10,6 @@ package kotlin
import java.util.*
import jet.Iterator
/**
* Returns *true* if all elements match the given *predicate*
@@ -10,7 +10,6 @@ package kotlin
import java.util.*
import jet.Iterator
/** Copies all elements into a [[SortedSet]] */
public inline fun <in T> Array<T>.toSortedSet() : SortedSet<T> = toCollection(TreeSet<T>())
@@ -10,7 +10,6 @@ package kotlin
import java.util.*
import jet.Iterator
/**
* Returns *true* if all elements match the given *predicate*
@@ -10,7 +10,6 @@ package kotlin
import java.util.*
import jet.Iterator
/** Copies all elements into a [[SortedSet]] */
public inline fun BooleanArray.toSortedSet() : SortedSet<Boolean> = toCollection(TreeSet<Boolean>())
@@ -10,7 +10,6 @@ package kotlin
import java.util.*
import jet.Iterator
/**
* Returns *true* if all elements match the given *predicate*
@@ -10,7 +10,6 @@ package kotlin
import java.util.*
import jet.Iterator
/** Copies all elements into a [[SortedSet]] */
public inline fun ByteArray.toSortedSet() : SortedSet<Byte> = toCollection(TreeSet<Byte>())
@@ -10,7 +10,6 @@ package kotlin
import java.util.*
import jet.Iterator
/**
* Returns *true* if all elements match the given *predicate*
@@ -10,7 +10,6 @@ package kotlin
import java.util.*
import jet.Iterator
/** Copies all elements into a [[SortedSet]] */
public inline fun CharArray.toSortedSet() : SortedSet<Char> = toCollection(TreeSet<Char>())
@@ -10,7 +10,6 @@ package kotlin
import java.util.*
import jet.Iterator
/**
* Returns *true* if all elements match the given *predicate*
@@ -10,7 +10,6 @@ package kotlin
import java.util.*
import jet.Iterator
/** Copies all elements into a [[SortedSet]] */
public inline fun DoubleArray.toSortedSet() : SortedSet<Double> = toCollection(TreeSet<Double>())
@@ -10,7 +10,6 @@ package kotlin
import java.util.*
import jet.Iterator
/**
* Returns *true* if all elements match the given *predicate*
@@ -10,7 +10,6 @@ package kotlin
import java.util.*
import jet.Iterator
/** Copies all elements into a [[SortedSet]] */
public inline fun FloatArray.toSortedSet() : SortedSet<Float> = toCollection(TreeSet<Float>())
@@ -10,7 +10,6 @@ package kotlin
import java.util.*
import jet.Iterator
/**
* Returns *true* if all elements match the given *predicate*
@@ -10,7 +10,6 @@ package kotlin
import java.util.*
import jet.Iterator
/** Copies all elements into a [[SortedSet]] */
public inline fun IntArray.toSortedSet() : SortedSet<Int> = toCollection(TreeSet<Int>())
@@ -9,7 +9,6 @@ package kotlin
import java.util.*
import jet.Iterator
/**
* Returns *true* if all elements match the given *predicate*
@@ -9,7 +9,6 @@ package kotlin
import java.util.*
import jet.Iterator
/** Copies all elements into a [[SortedSet]] */
public inline fun <in T> Iterator<T>.toSortedSet() : SortedSet<T> = toCollection(TreeSet<T>())
@@ -10,7 +10,6 @@ package kotlin
import java.util.*
import jet.Iterator
/**
* Returns *true* if all elements match the given *predicate*
@@ -10,7 +10,6 @@ package kotlin
import java.util.*
import jet.Iterator
/** Copies all elements into a [[SortedSet]] */
public inline fun LongArray.toSortedSet() : SortedSet<Long> = toCollection(TreeSet<Long>())
@@ -10,7 +10,6 @@ package kotlin
import java.util.*
import jet.Iterator
/**
* Returns *true* if all elements match the given *predicate*
@@ -10,7 +10,6 @@ package kotlin
import java.util.*
import jet.Iterator
/** Copies all elements into a [[SortedSet]] */
public inline fun ShortArray.toSortedSet() : SortedSet<Short> = toCollection(TreeSet<Short>())