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

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

package js.core

@JsName("Array")
sealed external class JsArray {
    companion object {
        fun  from(source: JsIterator): ReadonlyArray
        fun  from(source: JsIterable): ReadonlyArray
        fun  from(source: ArrayLike): ReadonlyArray
        fun  from(
            source: ArrayLike,
            map: (item: T, index: Int) -> U,
        ): ReadonlyArray
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy