MutableMapLike

interface MutableMapLike<K : Any, V> : MapLike<K, V> , MutableMap<K, V>

TBD.

Inheritors

Properties

Link copied to clipboard
abstract val entries: Set<Map.Entry<K, V>>
Link copied to clipboard
abstract val keys: Set<K>
Link copied to clipboard
abstract val size: Int
Link copied to clipboard
abstract val values: Collection<V>

Functions

Link copied to clipboard
abstract fun clear()
Link copied to clipboard
abstract fun containsKey(key: K): Boolean
Link copied to clipboard
abstract fun containsValue(value: V): Boolean
Link copied to clipboard
abstract fun delete(key: K)

TBD.

Link copied to clipboard
abstract fun entries(): JsIterator<MapLike.Entry<K, V>>

TBD.

Link copied to clipboard
abstract fun forEach(op: (MapLike.Entry<K, V>) -> Unit)

TBD.

Link copied to clipboard
abstract operator override fun get(key: K): V?

TBD.

Link copied to clipboard
abstract fun has(key: K): Boolean

TBD.

Link copied to clipboard
abstract fun isEmpty(): Boolean
Link copied to clipboard
abstract fun keys(): JsIterator<K>

TBD.

Link copied to clipboard
abstract fun put(key: K, value: V): V?
Link copied to clipboard
abstract fun putAll(from: Map<out K, V>)
Link copied to clipboard
abstract fun set(key: K, value: V)

TBD.

Link copied to clipboard
abstract fun sort()

TBD.

Link copied to clipboard
abstract override fun toString(): String

TBD.

Link copied to clipboard
abstract fun values(): JsIterator<V>

TBD.