BaseMap

interface BaseMap<K, V> : Map<K, V>

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
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
open override fun isEmpty(): Boolean
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
fun <T> Map<Int, T>.toIntMap(): IntMap<T>