![JAR search and dependency download from the Maven repository](/logo.png)
commonMain.ru.casperix.math.iteration.EmptyIterator.kt Maven / Gradle / Ivy
package casperix.math.function
fun emptyIteratorOf(): Iterator {
return object : Iterator {
override fun hasNext(): Boolean {
return false
}
override fun next(): T {
throw Error("Its empty iterator. First you need check hasNext")
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy