AsyncMapLike

external interface AsyncMapLike<K, out V> : AsyncIterable<JsTuple2<K, V>> (source)

Functions

Link copied to clipboard
abstract fun entries(): AsyncIterator<JsTuple2<K, V>>
Link copied to clipboard
open operator fun get(key: Symbol.asyncIterator): () -> AsyncIterator<JsTuple2<K, V>>
Link copied to clipboard
open inline operator fun iterator(): SuspendableIterator<JsTuple2<K, V>>
Link copied to clipboard
abstract fun keys(): AsyncIterator<K>
Link copied to clipboard
abstract fun values(): AsyncIterator<V>