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

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

package js.core

fun  JsIterator.asSequence(): Sequence =
    iterator().asSequence()

fun  JsIterator.toArray(): ReadonlyArray =
    JsArray.from(this)

fun  JsIterator.toList(): List =
    toArray().toList()

fun  JsIterator.toSet(): Set =
    toArray().toSet()




© 2015 - 2025 Weber Informatics LLC | Privacy Policy