AsyncMapLike

interface AsyncMapLike<K : JsAny?, out V : JsAny?> : AsyncIterable<Tuple2<K, V>> (source)

Functions

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