alakazam.kotlin.core.LoopController.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-core Show documentation
Show all versions of kotlin-core Show documentation
A set of useful functions and extensions for Kotlin development.
package alakazam.kotlin.core
public interface LoopController {
public fun shouldLoop(): Boolean
}
public object InfiniteLoopController : LoopController {
override fun shouldLoop(): Boolean = true
}