
commonMain.ru.casperix.math.iteration.EmptyIterator.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of math-jvm Show documentation
Show all versions of math-jvm Show documentation
Simple set of geometric and other types
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