Remove emptyIterator since java already has one
This commit is contained in:
parent
11e71361f7
commit
61aa3abdfa
@ -4,7 +4,7 @@ kotlin.code.style=official
|
|||||||
specifyKotlinAsDependency=false
|
specifyKotlinAsDependency=false
|
||||||
|
|
||||||
projectGroup=ru.dbotthepony.kommons
|
projectGroup=ru.dbotthepony.kommons
|
||||||
projectVersion=3.9.0
|
projectVersion=3.9.1
|
||||||
|
|
||||||
guavaDepVersion=33.0.0
|
guavaDepVersion=33.0.0
|
||||||
gsonDepVersion=2.8.9
|
gsonDepVersion=2.8.9
|
||||||
|
@ -2,6 +2,7 @@ package ru.dbotthepony.kommons.collect
|
|||||||
|
|
||||||
import ru.dbotthepony.kommons.util.KOptional
|
import ru.dbotthepony.kommons.util.KOptional
|
||||||
import java.util.*
|
import java.util.*
|
||||||
|
import java.util.Collections.emptyIterator
|
||||||
import java.util.NoSuchElementException
|
import java.util.NoSuchElementException
|
||||||
import java.util.function.Predicate
|
import java.util.function.Predicate
|
||||||
import java.util.stream.Collector
|
import java.util.stream.Collector
|
||||||
@ -377,24 +378,6 @@ fun <T> Iterator<T>.maybe(): T? {
|
|||||||
null
|
null
|
||||||
}
|
}
|
||||||
|
|
||||||
private object EmptyIterator : MutableIterator<Nothing> {
|
|
||||||
override fun hasNext(): Boolean {
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun next(): Nothing {
|
|
||||||
throw NoSuchElementException()
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun remove() {
|
|
||||||
throw NoSuchElementException()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fun <T> emptyIterator(): MutableIterator<T> {
|
|
||||||
return EmptyIterator as MutableIterator<T>
|
|
||||||
}
|
|
||||||
|
|
||||||
fun <T> iteratorOf(value: T): Iterator<T> {
|
fun <T> iteratorOf(value: T): Iterator<T> {
|
||||||
return object : Iterator<T> {
|
return object : Iterator<T> {
|
||||||
private var next = true
|
private var next = true
|
||||||
|
Loading…
Reference in New Issue
Block a user