
jsMain.js.collections.ReadonlyMap.kt Maven / Gradle / Ivy
package js.collections
import js.core.JsIterable
import js.core.JsTuple2
external interface ReadonlyMap :
JsIterable> {
val size: Int
fun entries(): JsIterable.Iterator>
fun forEach(action: (value: V, key: K) -> Unit)
operator fun get(key: K): V?
fun has(key: K): Boolean
fun keys(): JsIterable.Iterator
fun values(): JsIterable.Iterator
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy