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

jsMain.js.collections.ReadonlySet.kt Maven / Gradle / Ivy

package js.collections

import js.core.JsIterable
import js.core.JsTuple2

external interface ReadonlySet :
    JsIterable {

    val size: Int

    fun entries(): JsIterable.Iterator>
    fun forEach(action: (value: T) -> Unit)
    fun has(value: @UnsafeVariance T): Boolean
    fun keys(): JsIterable.Iterator
    fun values(): JsIterable.Iterator
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy