MapLike

external interface MapLike<K, out V> : JsIterable<JsTuple2<K, V>> (source)

Inheritors

Functions

Link copied to clipboard
abstract fun entries(): JsIterator<JsTuple2<K, V>>
Link copied to clipboard
abstract fun forEach(action: (value: V, key: K) -> Unit)
Link copied to clipboard
open operator fun get(key: Symbol.iterator): () -> JsIterator<JsTuple2<K, V>>
Link copied to clipboard
open inline operator fun iterator(): Iterator<JsTuple2<K, V>>
Link copied to clipboard
abstract fun keys(): JsIterator<K>
Link copied to clipboard
abstract fun values(): JsIterator<V>