Properties

Link copied to clipboard
Link copied to clipboard
abstract override val keys: MutableSet<String>
Link copied to clipboard
abstract val size: Int
Link copied to clipboard
abstract override val values: MutableCollection<V>

Functions

Link copied to clipboard
abstract fun clear()
Link copied to clipboard
abstract fun comparator(): Comparator<in String>
Link copied to clipboard
open fun compute(p0: String, p1: BiFunction<in String, in V?, out V?>): V?
Link copied to clipboard
open fun computeIfAbsent(p0: String, p1: Function<in String, out V>): V
Link copied to clipboard
open fun computeIfPresent(p0: String, p1: BiFunction<in String, in V, out V?>): V?
Link copied to clipboard
abstract fun containsKey(key: String): Boolean
Link copied to clipboard
abstract fun containsValue(value: V): Boolean
Link copied to clipboard
abstract fun firstKey(): String
Link copied to clipboard
open fun forEach(p0: BiConsumer<in String, in V>)
Link copied to clipboard
abstract operator fun get(key: String): V?
Link copied to clipboard
open fun getOrDefault(key: String, defaultValue: V): V
Link copied to clipboard
abstract fun headMap(p0: String): SortedMap<String, V>
Link copied to clipboard
abstract fun isEmpty(): Boolean
Link copied to clipboard
abstract fun lastKey(): String
Link copied to clipboard
open fun merge(p0: String, p1: V, p2: BiFunction<in V, in V, out V?>): V?
Link copied to clipboard
abstract fun put(key: String, value: V): V?
Link copied to clipboard
abstract fun putAll(from: Map<out String, V>)
Link copied to clipboard
open fun putIfAbsent(p0: String, p1: V): V?
Link copied to clipboard
abstract fun remove(key: String): V?
open fun remove(key: String, value: V): Boolean
Link copied to clipboard
open fun replace(p0: String, p1: V): V?
open fun replace(p0: String, p1: V, p2: V): Boolean
Link copied to clipboard
open fun replaceAll(p0: BiFunction<in String, in V, out V>)
Link copied to clipboard
open fun requiredSearch(scope: String): V
Link copied to clipboard
open fun search(scope: String): V?
Link copied to clipboard
abstract fun subMap(p0: String, p1: String): SortedMap<String, V>
Link copied to clipboard
abstract fun tailMap(p0: String): SortedMap<String, V>
Link copied to clipboard