BaseMutableMap

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
fun <K, V> MutableMapList<K, V>.append(key: K, value: V): MutableMapList<K, V>
Link copied to clipboard
fun <K, V> MutableMapList<K, V>.appendAll(vararg items: Pair<K, V>): MutableMapList<K, V>
Link copied to clipboard
Link copied to clipboard
abstract fun clear()
Link copied to clipboard
open override fun containsKey(key: K): Boolean
Link copied to clipboard
open override fun containsValue(value: V): Boolean
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
fun <K, V> MapList<K, V>.flatten(): List<Pair<K, V>>
Link copied to clipboard
fun <K, V> Map<K, V>.flip(): Map<V, K>
Link copied to clipboard
abstract operator fun get(key: K): V?
Link copied to clipboard
fun <K, V> MapList<K, V>.getFirst(key: K): V?
Link copied to clipboard
fun <K, V> MapList<K, V>.getLast(key: K): V?
Link copied to clipboard
fun <K> MutableMap<K, Int>.incr(key: K, delta: Int = +1): Int
Link copied to clipboard
open override fun isEmpty(): Boolean
Link copied to clipboard
abstract fun put(key: K, value: V): V?
Link copied to clipboard
open override fun putAll(from: Map<out K, V>)
Link copied to clipboard
abstract fun remove(key: K): V?
Link copied to clipboard
fun <K, V> MutableMapList<K, V>.replace(key: K, value: V): MutableMapList<K, V>
Link copied to clipboard
fun <K, V> MutableMapList<K, V>.replaceAll(vararg items: Pair<K, V>): MutableMapList<K, V>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
fun <T> Map<Int, T>.toIntMap(): IntMap<T>