MutableEntry

interface MutableEntry<K, V> : Map.Entry<K, V>

Represents a key/value pair held by a MutableMap.

interface MutableEntry<K, V> : Map.Entry<K, V>

Represents a key/value pair held by a MutableMap.

interface MutableEntry<K, V> : Map.Entry<K, V>

Represents a key/value pair held by a MutableMap.

interface MutableEntry<K, V> : Map.Entry<K, V>

Represents a key/value pair held by a MutableMap.

Functions

Link copied to clipboard
abstract fun setValue(newValue: V): V

Changes the value associated with the key of this entry.

abstract fun setValue(newValue: V): V

Changes the value associated with the key of this entry.

abstract fun setValue(newValue: V): V

Changes the value associated with the key of this entry.

abstract fun setValue(newValue: V): V

Changes the value associated with the key of this entry.

Properties

Link copied to clipboard
abstract val key: K
abstract val key: K

Returns the key of this key/value pair.

abstract val key: K

Returns the key of this key/value pair.

abstract val key: K

Returns the key of this key/value pair.

Link copied to clipboard
abstract val value: V
abstract val value: V

Returns the value of this key/value pair.

abstract val value: V

Returns the value of this key/value pair.

abstract val value: V

Returns the value of this key/value pair.

Extensions

Link copied to clipboard
inline operator fun <K, V> Map.Entry<K, V>.component1(): K
inline operator fun <K, V> Map.Entry<K, V>.component1(): K
inline operator fun <K, V> Map.Entry<K, V>.component1(): K
inline operator fun <K, V> Map.Entry<K, V>.component1(): K

Returns the key component of the map entry.

Link copied to clipboard
inline operator fun <K, V> Map.Entry<K, V>.component2(): V
inline operator fun <K, V> Map.Entry<K, V>.component2(): V
inline operator fun <K, V> Map.Entry<K, V>.component2(): V
inline operator fun <K, V> Map.Entry<K, V>.component2(): V

Returns the value component of the map entry.

Link copied to clipboard
inline fun <K, V> Map.Entry<K, V>.toPair(): Pair<K, V>
inline fun <K, V> Map.Entry<K, V>.toPair(): Pair<K, V>
inline fun <K, V> Map.Entry<K, V>.toPair(): Pair<K, V>
inline fun <K, V> Map.Entry<K, V>.toPair(): Pair<K, V>

Converts entry to Pair with key being first component and value being second.