All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jsMain.js.core.JsIterator.kt Maven / Gradle / Ivy

package js.core

/** ES6 Iterator type. */
sealed external interface JsIterator {
    fun next(): Result

    sealed interface Result {
        val done: Boolean
    }

    sealed interface YieldResult : Result {
        val value: TYield
    }

    sealed interface ReturnResult : Result {
        val value: TReturn
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy